fatima 1.0.4 copy "fatima: ^1.0.4" to clipboard
fatima: ^1.0.4 copied to clipboard

discontinued

A kit for flutter that contains UI tools, State Mangement tools, Navigation system, Storage.

example/lib/main.dart

import 'package:example/routes.dart';
import 'package:example/styles.dart';
import 'package:fatima/fatima.dart';
import 'package:flutter/material.dart';

Future<void> main() async {
  await Storage.init();
  Storage().erase();
  // ElevatedButton(style: ElevatedButton.styleFrom(),)
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return FatimaApp(
      title: 'Fatima Documentation',
      defaultTransition: Transition.circularReveal,
      textDirection: TextDirection.ltr,

      // color: Colors.blueGrey,
      uiConfig: uiConfig,
      // scrollBehavior: MyCustomScrollBehavior(),
      debugShowCheckedModeBanner: false,
      pages: routes,
    );
  }
}
7
likes
80
points
54
downloads

Publisher

verified publishersmae.ir

Weekly Downloads

A kit for flutter that contains UI tools, State Mangement tools, Navigation system, Storage.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg, flutter_web_plugins, path_provider

More

Packages that depend on fatima