fule_scaffold 0.1.1 copy "fule_scaffold: ^0.1.1" to clipboard
fule_scaffold: ^0.1.1 copied to clipboard

A simple scaffolding widget that you can easily control the status bar style.

example/example.dart

import 'package:flutter/material.dart';
import 'package:fule_scaffold/fule_scaffold.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  MyApp({Key key}) : super(key: key);

  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: FuleScaffold(
        body: Container(
          child: Image.network(
            'https://i.loli.net/2020/04/16/gpIVeN8a2m93nXt.jpg',
          ),
        ),
      ),
    );
  }
}
1
likes
35
pub points
0%
popularity

Publisher

verified publisherfule.tech

A simple scaffolding widget that you can easily control the status bar style.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on fule_scaffold