statusbarmanager

Creator: coderz1093

Last updated:

Add to Cart

Description:

statusbarmanager

🎨 StatusBar Manager #

Managing the colors of your StatusBar and NavigationBar is easier and more convenient using the StatusBarManager in your Flutter project.

Install #
Install the package as a dependency on pubspec.yaml which is at the root of your project
dependencies:
statusbarmanager: ^0.0.1
// Awesome packages
copied to clipboard
Import the package into your main Dart file
import 'package:statusbarmanager/statusbarmanager.dart';
copied to clipboard
Usage #
You can instantiate the StatusBarManager right in your main function
void main() {
runApp(StatusBarManager(
translucent: false,
child: AwesomeWidget(),
));
}
copied to clipboard
Or manually instantiate in a class by extending StatelessWidget
void main() {
runApp(AwesomeWidget);
}

class AwesomeWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return StatusBarManager(
translucent: false,
child: MaterialApp(
home: Scaffold(),
),
);
}
}
copied to clipboard
The StatusBarManager class receives the following attributes:



Propertie
Type
Required
Description




child
Widget
Yes
Receives a root widget that will be responsible for rendering the content on the screen


translucent
Bool
Yes
When false, the system status bar pushes the content of your app down (similar to position: relative). When true, the status bar floats above the content in your app (similar to position: absolute)


statusBarColor
Color
No
Set a color for your StatusBar


statusBarBrightness
Brightness
No
Defines the shine your Status Bar should have


statusBarIconBrightness
Brightness
No
Sets brightness for StatusBar icons


navigationBarColor
Color
No
Sets the color for the NavigationBar


navigationBarBrightness
Brightness
No
Set the brightness for the NavigationBar


navigationBarDividerColor
Color
No
Sets the color of the split between your UI content and the NavigationBar



See an example of a real app using this package.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.