https://github.com/daohoangson/flutter-vnd_keyboard
https://github.com/daohoangson/flutter-vnd_keyboard
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/daohoangson/flutter-vnd_keyboard
- Owner: daohoangson
- License: mit
- Created: 2020-10-16T02:45:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:37:43.000Z (over 1 year ago)
- Last Synced: 2024-12-22T21:06:09.341Z (7 months ago)
- Language: Dart
- Size: 391 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_vnd_keyboard

[](https://codecov.io/gh/daohoangson/flutter-vnd_keyboard)Vietnamese đồng keyboard for Flutter.
## Getting Started
Add this to your app's `pubspec.yaml` file:
```yaml
dependencies:
flutter_vnd_keyboard: ^0.0.1
```## Usage
Then you have to import the package with:
```dart
import 'package:flutter_vnd_keyboard/flutter_vnd_keyboard.dart';
```And use `VndKeyboard` or `VndBottomSheet` where appropriate.
```dart
ElevatedButton(
child: Text('showBottomSheet'),
onPressed: () async {
final vnd = await showModalBottomSheet(
builder: (_) => VndBottomSheet(),
context: context,
);
print('vnd=$vnd');
},
);
}
```| Light theme | Dark theme |
| ----------- | ---------- |
| VndKeyboard | |
|  |  |
| VndBottomSheet | |
|  |  |