https://github.com/localvoid/uix_forms
Basic form components for uix library.
https://github.com/localvoid/uix_forms
Last synced: 12 months ago
JSON representation
Basic form components for uix library.
- Host: GitHub
- URL: https://github.com/localvoid/uix_forms
- Owner: localvoid
- License: bsd-2-clause
- Created: 2015-05-07T06:56:29.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T05:10:05.000Z (about 11 years ago)
- Last Synced: 2025-03-20T04:44:14.073Z (about 1 year ago)
- Language: Dart
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uix_forms
Basic form components for uix library.
## Usage
A simple usage example:
import 'package:uix_forms/uix_forms.dart';
class Main extends Component {
updateView() {
updateRoot(vRoot()([
vComponent($TextInput, attrs: const {'type': 'text', 'placeholder': 'Text Input'}),
vComponent($CheckedInput, attrs: const {'type': 'checkbox'})
]));
}
}