Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahyangnb/tabbar_gradient_indicator_plus
https://github.com/ahyangnb/tabbar_gradient_indicator_plus
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahyangnb/tabbar_gradient_indicator_plus
- Owner: ahyangnb
- License: bsd-3-clause
- Created: 2024-09-24T07:41:59.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-24T08:00:03.000Z (3 months ago)
- Last Synced: 2024-10-16T14:13:08.288Z (3 months ago)
- Language: C++
- Size: 438 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Tabbar gradient indicator
a custom tabbar gradient indicator for flutter, and it support ios and android## Screenshots
| ![image](https://github.com/ahyangnb/tabbar_gradient_indicator_plus/blob/main/images/example.jpg?raw=true) | ![image2](https://github.com/ahyangnb/tabbar_gradient_indicator_plus/blob/main/images/example2.jpeg?raw=true) |
|:---------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------------------:|## Update content.
1. support set the direction of gradient.
2. support set the radius of indicator.
3. support set the fixedWidth of indicator.## Getting Started
1. Depend on it by adding this to your pubspec.yaml file: ```tabbar_gradient_indicator_plus: ^1.0.0```
2. Import it: ```import 'package:tabbar_gradient_indicator_plus/tabbar_gradient_indicator_plus.dart'```
3. set the **indicator** property of Tabbar like this:
````dart
TabBar(indicator: TabBarGradientIndicator(
gradientColor: [Color(0xff579CFA) , Color(0xff2FDEE7)],
indicatorWidth: 2)
)
````