Basic form fields and utilities. Maybe a humble boilerplate.
https://edufolly.github.io/folly_fields/
https://github.com/edufolly/folly_fields/tree/main/example/lib
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
# https://pub.dev/packages/folly_fields
folly_fields: x.y.z # lastest pub.dev release
Check pub.dev latest release.
For edge builds, replace pub.dev version to git repo:
# https://github.com/edufolly/folly_fields
folly_fields:
git:
url: https://github.com/edufolly/folly_fields.git
ref: v0.0.1 # latest release or branch name
Use ref to avoid breaking changes. Check GitHub latest release.
https://github.com/edufolly/folly_fields/blob/main/example/lib/config.dart
class Config extends AbstractConfig {
static final Config _singleton = Config._internal();
factory Config() {
return _singleton;
}
Config._internal();
/// Content...
}
https://github.com/edufolly/folly_fields/blob/main/example/lib/main.dart
void main() {
WidgetsFlutterBinding.ensureInitialized();
FollyFields.start(Config());
runApp(MyApp());
}
https://github.com/edufolly/folly_fields/blob/main/example/lib/main.dart
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Folly Fields Example',
theme: ThemeData(
primarySwatch: Colors.deepOrange,
),
home: const MyHomePage(),
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: const <Locale>[
Locale('pt', 'BR'),
],
);
}
}