Last updated:
0 purchases
folly fields
FollyFields #
Basic form fields and utilities. Maybe a humble boilerplate.
Funding #
Community #
Join our official Discord server
Example #
Demo #
https://edufolly.github.io/folly_fields/
Code #
https://github.com/edufolly/folly_fields/tree/main/example/lib
How to use #
pubspec.yaml #
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
# https://pub.dev/packages/folly_fields
folly_fields: x.y.z # lastest pub.dev release
copied to clipboard
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
copied to clipboard
Use ref to avoid breaking changes.
Check GitHub latest release.
config.dart #
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...
}
copied to clipboard
main.dart #
https://github.com/edufolly/folly_fields/blob/main/example/lib/main.dart
void main() {
WidgetsFlutterBinding.ensureInitialized();
FollyFields.start(Config());
runApp(MyApp());
}
copied to clipboard
MaterialApp #
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'),
],
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.