rounded floating app bar
rounded floating app bar like new google applications has. this package provides an easy way to add rounded corner floating app bar in flutter project.
installing
- add dependency to
pubspec.yaml
get the latest version in the ‘installing’ tab on pub.dartlang.org
dependencies:
rounded_floating_app_bar: 0.1.0
- import the package
import 'package:rounded_floating_app_bar/rounded_floating_app_bar.dart';
- adding
roundedfloatingappbar
widget
roundedfloatingappbar(
floating: true,
snap: true,
),
how to use
check out the example app in the example directory or the ‘example’ tab on pub.dartlang.org for a more complete example.
getting started
this project is a starting point for a dart
package,
a library module containing code that can be shared easily across
multiple flutter or dart projects.
for help getting started with flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full api reference.
contribute
- download the the project
- create your feature branch (git checkout -b my-new-feature)
- make required changes and commit (git commit -am ‘add some feature’)
- push to the branch (git push origin my-new-feature)
- create new pull request
Comments are closed.