├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images └── topbar.png ├── lib ├── constant.dart └── custom_top_bar.dart ├── pubspec.lock ├── pubspec.yaml └── test └── custom_top_bar_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/README.md -------------------------------------------------------------------------------- /images/topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/images/topbar.png -------------------------------------------------------------------------------- /lib/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/lib/constant.dart -------------------------------------------------------------------------------- /lib/custom_top_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/lib/custom_top_bar.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/custom_top_bar_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketanchoyal/custom_top_bar/HEAD/test/custom_top_bar_test.dart --------------------------------------------------------------------------------