Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rahiche/flutter_code_input
Flutter Code Input
https://github.com/rahiche/flutter_code_input
dart flutter widget
Last synced: 2 months ago
JSON representation
Flutter Code Input
- Host: GitHub
- URL: https://github.com/rahiche/flutter_code_input
- Owner: Rahiche
- License: mit
- Created: 2018-08-19T11:54:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-31T22:46:16.000Z (over 3 years ago)
- Last Synced: 2024-05-01T15:34:09.636Z (8 months ago)
- Topics: dart, flutter, widget
- Language: Dart
- Size: 291 KB
- Stars: 70
- Watchers: 7
- Forks: 11
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# code_input
A Flutter widget for inputting content with a fixed length, visually treating each character as a separate segment.
- [Pub Package](https://pub.dartlang.org/packages/code_input)
- [GitHub Repository](https://github.com/rahiche/flutter_code_input)
- [API reference](https://pub.dartlang.org/documentation/code_input/)## Usage
This is a small example:
```dart
CodeInput(
length: 4,
keyboardType: TextInputType.number,
builder: CodeInputBuilders.lightCircle(),
onFilled: (value) => print('Your input is $value.'),
)
```For more information about the properties, have a look at the [API reference](https://pub.dartlang.org/documentation/code_input/).
## LICENSE
```legal
Copyright (c) 2018 Marcel Garus & Rahiche RaoufPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```