wt_framework 1.1.0
wt_framework: ^1.1.0 copied to clipboard
WondTech Flutter MVC framework — controllers, models, views, routing, sessions, and enveloped token-auth API helpers for building structured Flutter apps.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add wt_frameworkThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
wt_framework: ^1.1.0Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:wt_framework/libs/config/wt_config.dart';
import 'package:wt_framework/libs/core/wt_app.dart';
import 'package:wt_framework/libs/core/wt_router.dart';
import 'package:wt_framework/libs/helpers/wt_helper.dart';
import 'package:wt_framework/libs/helpers/wt_security.dart';
import 'package:wt_framework/libs/helpers/wt_session.dart';
import 'package:wt_framework/libs/mvc/wt_controller.dart';
import 'package:wt_framework/libs/mvc/wt_model.dart';
import 'package:wt_framework/libs/mvc/wt_view.dart';
import 'package:wt_framework/wt.dart';