# com.imobicloud.keyboardtoolbar

> Titanium UI - Keyboard toolbar

Latest version **1.0.0** (published 2017-08-07) · Public Domain license · 0 weekly downloads

## Install

```sh
npm install com.imobicloud.keyboardtoolbar
pnpm add com.imobicloud.keyboardtoolbar
yarn add com.imobicloud.keyboardtoolbar
bun add com.imobicloud.keyboardtoolbar
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-08-07 |
| First published | 2017-08-07 |
| Weekly downloads | 0 |
| License | Public Domain |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| Author | imobicloud |
| Maintainers | imobicloud |
| Keywords | alloy, alloy-widget, appc-npm, appcelerator |

## Links

- npm: https://www.npmjs.com/package/com.imobicloud.keyboardtoolbar
- Repository: https://github.com/github.com/imobicloud/com.imobicloud.keyboardtoolbar
- Homepage: https://github.com/imobicloud/com.imobicloud.keyboardtoolbar#titanium-ui---keyboard-toolbar
- Issues: https://github.com/imobicloud/com.imobicloud.keyboardtoolbar/issues
- npm.io page: https://npm.io/package/com.imobicloud.keyboardtoolbar

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-08-07

## README

# Titanium UI - Keyboard toolbar

Keyboard toolbar can be used for message box in chat apps

![Textarea example](http://i.imgur.com/KvLEHgy.png)

====

View
	
	<Widget id="toolbar" src="com.imobicloud.keyboardtoolbar" onToggle="toolbarToggle">
		<Widget src="com.imobicloud.textarea" class="txt-message" maxHeight="100" hintText="Type your message" onResize="toolbarResize"/>
	    	<Button class="button-send">SEND</Button>
	</Widget>
	
Styles
	
	".txt-message": { height: Ti.UI.SIZE, top: 12, bottom: 12, left: 10, right: 75.5, backgroundColor: '#fff', borderRadius: 15 }			

Controller

	$.toolbar.init( window_view );   // call this function on first load
	
	$.toolbar.unload(); // call this function when window blurred
	$.toolbar.init( window_view ); // call this function when window focussed

	function toolbarToggle(e) {
  		$.lv.bottom = e.height + 56;
	}

	function toolbarResize(e) {
  		$.lv.bottom = e.height + 56 + 12 + 12;
	}

Changes log:

---
_Source: https://npm.io/package/com.imobicloud.keyboardtoolbar · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
