An open API service indexing awesome lists of open source software.

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.

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'})
]));
}
}