super_ui 0.0.8+3 copy "super_ui: ^0.0.8+3" to clipboard
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 #

Pub Version

A flutter package containing a range of different widgets.

Getting Started #

  1. add this to your pubspec.yaml file:
dependencies:
  super_ui: ^0.0.2
  1. Run this command:
$ flutter pub get
  1. Import:
import 'package:auth_buttons/super_ui.dart';

Some of the widgets #

Images #

  1. CircularImageHolder : Circular widget for fetching both network image and file image.

Example 1

CircularImageHolder(
  imageSize: 0.5,
  imageUrl: 'https://i.gadgets360cdn.com/large/google_io_afp_1583296131115.jpg',
  icon: Icons.add,
  iconBackgroundColor: Colors.pink,
),

Buttons #

  1. GradientButton : Button with gradient effect.
  2. IcButton : Button with icon.
  3. SuperButton : Supports almost all important property that a fancy button should have.
  4. AuthButton : Buttons with logo of social media like fb, twitter etc.

Example 2

Example 3

AuthButton(
  item: SocialItem.microsoft,
  onPressed: () {},
),

Example 4

Others #

  1. BillboardText : A widget to show highlighed text (Normal, Error, Warning).
  2. Bubble
  3. GlowingStars
  4. EmptyWidget : To show whitespace
  5. SuperRichText : A two parted Text widget to show two different style.

Example 5

** TextFields **

  1. EditText : Simple TextFormField, but easier to use.
4
likes
80
pub points
46%
popularity

Publisher

unverified uploader

Package for commonly used custom widget like buttons, imageholder etc. Aimed to ease the development of UI.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

cached_network_image, flutter, flutter_hooks, image_picker, lint, shimmer

More

Packages that depend on super_ui