This is a UI kit that shares Flutter components through my projects.
It's a collection of some common used widgets.
Just use them like other Flutter components.
class SimpleWidget extends StatelessWidget {
const SimpleWidget({super.key});
@override
Widget build(BuildContext context) {
return AppVersion();
}
}- AppVersion: It will automatically get your app version and display with OS icon and version (x.x.x).
- DateTimePickerField: A form field that can pick a date and time by clicking it.
- DatePickerField: A form field that can pick a date by clicking it.