FLUTTER ECOSYSTEM

RuparnaMukherjee/decorative_app_bar

Flutterでアプリバーを簡単に装飾する

装飾的なアプリバー のプロジェクト画像
Stars
1
Forks
0
最終プッシュ(UTC)
2022/09/09
プロジェクト状態
公開中
Ruparna Mukherjee GitHub avatar
GITHUB User

Ruparna Mukherjee ↗

言語Dart

使用している依存関係

依存関係一覧 2 件
  • flutter{"sdk":"flutter"}
  • flutter_test開発用{"sdk":"flutter"}

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

decorativeAppBar

A Flutter package to easily decorate your appbar with rounded borders and adding your own widgets on appbar.

Features

1)Compatible with any widget class of flutter 2)Compatible with both android and ios 3)Has an additional feature of styling your appbar gradient,size,background,bottom radius.

Usage

in pubspec.yaml decorative_app_bar: ^0.0.2 Import it as import 'package:decorative_app_bar/decorative_app_bar.dart'

Snippet For Reference

DecorativeAppBar(
          barHeight: 400,  //height of appbar
          barPad: 170,     //distance of the curve from appbar
          radii: 100,      //radius of the curve
          background: Colors.pink[50],   //background color must be same as app's background
          gradient1: Colors.white, //gradient color for appbar
          gradient2: Colors.green, //gradient color for appbar
          extra: extra_widget(),  //style your icons,searchbar,text to your appbar with your own widget
 ));

Screenshots

default

image

feature example 1

image

feature example 2

image