ffm 1.0.1
ffm: ^1.0.1 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 MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'FFM Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomePage(),
);
}
}