super_ui 0.0.8+3 super_ui: ^0.0.8+3 copied to clipboard
Package for commonly used custom widget like buttons, imageholder etc. Aimed to ease the development of UI.
super_ui #
A flutter package containing a range of different widgets.
Getting Started #
- add this to your pubspec.yaml file:
dependencies:
super_ui: ^0.0.2
- Run this command:
$ flutter pub get
- Import:
import 'package:auth_buttons/super_ui.dart';
Some of the widgets #
Images #
- CircularImageHolder : Circular widget for fetching both network image and file image.
CircularImageHolder(
imageSize: 0.5,
imageUrl: 'https://i.gadgets360cdn.com/large/google_io_afp_1583296131115.jpg',
icon: Icons.add,
iconBackgroundColor: Colors.pink,
),
Buttons #
- GradientButton : Button with gradient effect.
- IcButton : Button with icon.
- SuperButton : Supports almost all important property that a fancy button should have.
- AuthButton : Buttons with logo of social media like fb, twitter etc.
AuthButton(
item: SocialItem.microsoft,
onPressed: () {},
),
Others #
- BillboardText : A widget to show highlighed text (Normal, Error, Warning).
- Bubble
- GlowingStars
- EmptyWidget : To show whitespace
- SuperRichText : A two parted Text widget to show two different style.
** TextFields **
- EditText : Simple TextFormField, but easier to use.