mobx_form_builder 0.0.3
mobx_form_builder: ^0.0.3 copied to clipboard
Mobx Form Builder provides an easy way of dealing with forms and their states without creating a lot of boilerplate code.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:mobx_form_builder_example/presentation/example_page.dart';
void main() {
runApp(const ExamplePage());
}