ffm 1.0.22 copy "ffm: ^1.0.22" to clipboard
ffm: ^1.0.22 copied to clipboard

Flutter For Mobile, all in one solution to build your flutter app from scratch.

example/lib/main.dart

/*
 * Copyright (c) 2022.
 * Created by Andy Pangaribuan. All Rights Reserved.
 *
 * This product is protected by copyright and distributed under
 * licenses restricting copying, distribution and decompilation.
 */

import 'package:example/home-page/home_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const FApp());
}

class FApp extends StatefulWidget {
  const FApp({Key? key}) : super(key: key);

  @override
  State<StatefulWidget> createState() => _FAppState();

}

class _FAppState extends State<FApp> {
  HomePage? _homePage;
  HomePage get homePage {
    _homePage ??= HomePage();
    return _homePage!;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'FFM Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: homePage.getWidget(),
    );
  }

}
2
likes
110
pub points
8%
popularity

Publisher

unverified uploader

Flutter For Mobile, all in one solution to build your flutter app from scratch.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

clock, flutter, intl, pointycastle, rxdart

More

Packages that depend on ffm