https://github.com/best-flutter/flutter_statusbar
A flutter plugin to fetch statusbar info like height.
https://github.com/best-flutter/flutter_statusbar
Last synced: 5 months ago
JSON representation
A flutter plugin to fetch statusbar info like height.
- Host: GitHub
- URL: https://github.com/best-flutter/flutter_statusbar
- Owner: best-flutter
- License: mit
- Created: 2018-07-11T15:54:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-29T16:49:10.000Z (over 6 years ago)
- Last Synced: 2025-03-28T03:51:13.399Z (about 1 year ago)
- Language: Ruby
- Size: 113 KB
- Stars: 16
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_statusbar
A flutter plugin to fetch statusbar info like height.
## Getting Started
Add
```bash
flutter_statusbar : ^0.0.1
```
to your pubspec.yaml ,and run
```bash
flutter packages get
```
## How to use
```
import 'package:flutter_statusbar/flutter_statusbar.dart';
double _height = await FlutterStatusbar.height;
```