# gradient_app_bar **Repository Path**: coder-lijing/gradient_app_bar ## Basic Information - **Project Name**: gradient_app_bar - **Description**: forked from github joostlek/GradientAppBar - **Primary Language**: Dart - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-05 - **Last Updated**: 2021-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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]) ), ```