fstudio 1.0.6 copy "fstudio: ^1.0.6" to clipboard
fstudio: ^1.0.6 copied to clipboard

Flutter framework for any platform.

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: 'FStudio Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: homePage.getWidget(),
    );
  }

}
1
likes
110
points
62
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter framework for any platform.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

clock, flutter, intl, pointycastle, rxdart

More

Packages that depend on fstudio