so_flutter 0.3.14
so_flutter: ^0.3.14 copied to clipboard
A wrapper around Flutter's App concepts. This package provides a small set of helper classes for quickly building Flutter applications based on Material design.
A wrapper around Flutter's App concepts. #
This package provides is a small set of helper classes for quickly building Flutter applications based on Material design.
Features #
The App class may be directly used to create a quick application or one can extend it with further features.
Getting started #
You may import this library to your flutter project with the following command (in your project folder):
flutter pub add so_flutter
flutter pub get
Usage #
The following code creates a Hello World app!
import 'package:so_flutter/so_flutter.dart';
main() {
App().run();
}
Please see the https://pub.dev/packages/so_flutter/example page for more details.