2

[Dart] Virtual Keyboard

 3 years ago
source link: http://siongui.github.io/2017/01/29/dartlang-virtual-keypad/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

[Dart] Virtual Keyboard

January 29, 2017

Virtual kayboard/keypad in Dart programming language.

Demo

Real world application is Pāli Dictionary. There are special characters in romanized Pāli. For the convenience of input Pāli words, users can use the virtual keyboard to type Pāli word without installation of Pāli input method in computers

Source code:

index.html | repository | view raw

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Virtual Keypad Demo</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" type="text/css" href="keypad.css">
</head>
<body>

<input type="text" id="userinput"><br>
<div class="keypad"></div>

<script src="app.js"></script>
</body>
</html>

The logic in Dart code is simple:

app.dart | repository | view raw

import 'dart:html';

void main() {
  InputElement word = querySelector("#userinput");
  Element keypad = querySelector(".keypad");
  var letters = [['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p'],
                 ['a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l'],
                 ['z', 'x', 'c', 'v', 'b', 'n', 'm'],
                 ['ā', 'ḍ', 'ī', 'ḷ', 'ṁ', 'ṃ', 'ñ', 'ṇ', 'ṭ', 'ū', 'ŋ', 'ṅ'] ];

  for (var row = 0; row < letters.length; row++) {
    var divElm = new Element.tag('div');
    for (var i = 0; i < letters[row].length; i++) {
      var inputElm = new InputElement();
      inputElm.type = 'button';
      inputElm.value = letters[row][i];
      inputElm.onClick.listen((e) => word.value += e.target.value);
      divElm.children.add(inputElm);
    }
    keypad.children.add(divElm);
  }
}
keypad.css | repository | view raw
.keypad {
  position: absolute;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: move;
  z-index: 21;
  text-align: center;
  background-color: #F0F8FF;
}

.keypad > div {
  display: block;
}
For AngularJS version, see [1].
For Vue.js version, see [2].
For plain JavaScript version, see [3].
For GopherJS version, see [4].

Tested on: DartPad.


References:


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK