statusbar 1.1.0 copy "statusbar: ^1.1.0" to clipboard
statusbar: ^1.1.0 copied to clipboard

Change color of status bar easily.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
    StatusBar.color(Colors.red);
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: Text(""),
    );
  }
}
10
likes
30
pub points
51%
popularity

Publisher

unverified uploader

Change color of status bar easily.

Homepage

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on statusbar