https://github.com/zephylac/title_bar
status bar color for go-flutter
https://github.com/zephylac/title_bar
flutter flutter-plugin go-flutter linux macosx windows
Last synced: about 1 year ago
JSON representation
status bar color for go-flutter
- Host: GitHub
- URL: https://github.com/zephylac/title_bar
- Owner: zephylac
- License: mit
- Created: 2019-07-10T08:44:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-02T08:59:34.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T21:50:43.525Z (about 1 year ago)
- Topics: flutter, flutter-plugin, go-flutter, linux, macosx, windows
- Language: Dart
- Size: 70.3 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# title_bar
[](https://pub.dartlang.org/packages/title_bar)
[](https://opensource.org/licenses/MIT)
[](http://godoc.org/github.com/zephylac/title_bar)
A Flutter plugin for go-flutter, available for MacOS. It will allow you to customize your title bar by changing the color, name, hiding it, etc.
Note: This plugin is still under development, and some APIs might not be available yet. Feedback welcome and Pull Requests are most welcome!
## Getting started
### Flutter side
In the pubspec.yaml of your flutter project, add the following dependency:
```yml
dependencies:
...
flutter_slidable: "^0.2.0"
```
In your library add the following import:
```dart
import 'package:title_bar/title_bar.dart';
```
For help getting started with Flutter, view the online [documentation](https://flutter.dev/).
### go-flutter side
Import as:
```go
import "github.com/zephylac/title_bar"
```
Then add the following option to your go-flutter [application options](https://github.com/go-flutter-desktop/go-flutter/wiki/Plugin-info):
```go
flutter.AddPlugin(&title_bar.TitleBarPlugin{}),
```
## Changelog
Please see the [changelog](https://github.com/zephylac/title_bar/blob/master/CHANGELOG.md) page to know what's recently changed.
## More info
If you want to check the current development status go check [here](https://github.com/zephylac/title_bar/projects/1)
## Contributions
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an [issue](https://github.com/zephylac/title_bar/issues/).
If you fixed a bug or implemented a feature, please send a pull [request](https://github.com/zephylac/title_bar/pulls/).