Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joostlek/GradientAppBar

Gradient app bar for Flutter
https://github.com/joostlek/GradientAppBar

appbar dart dartlang flutter flutter-package gradient

Last synced: 3 months ago
JSON representation

Gradient app bar for Flutter

Awesome Lists containing this project

README

        

# Gradient App Bar

Love the material AppBar? Do you want to add more color to the appbar? Here's a gradientAppBar.

It works just like the normal AppBar. Also with actions, back buttons, titles. So it's just your normal AppBar, but with a twist!

## Screenshots

![image](https://user-images.githubusercontent.com/7083755/43866104-e9bc98ea-9b64-11e8-9115-b2deec915dbd.png)
![image](https://user-images.githubusercontent.com/7083755/43866237-4f8e6a5e-9b65-11e8-8adf-2514a9b1e10c.png)

## Getting Started

1. Depend on it by adding this to your pubspec.yaml file: ```gradient_app_bar: ^0.1.3```

2. Import it: ```import 'package:gradient_app_bar/gradient_app_bar.dart'```

3. Replace your current AppBar (In the scaffold) to GradientAppBar.

```
appBar: GradientAppBar(
title: Text('Flutter'),
gradient: LinearGradient(colors: [Colors.blue, Colors.purple, Colors.red])
),
```