bilions_ui 1.0.0 copy "bilions_ui: ^1.0.0" to clipboard
bilions_ui: ^1.0.0 copied to clipboard

outdated

Bilions UI components. Custom made alert, confirm, image preview, toast widgets, text input, date picker, bottom sheet menu. All widget are support with different theme variant such as primary, succes [...]

Bilions UI Components #

Preview

Functions #

Alert
alert(
  'Title here',
  'Description here',
  variant: 'warning', 
)

  • variant success, waring, danger, info
Toast
toast('Confirmed', variant: 'success');

  • variant success, waring, danger, info
Confirm Dialog
confirm(ConfirmDialog(
    'Are you sure?', 
    variant : 'success',
    confirmed: () {
      // do something here
    },
  ),
)
Image Picker
openUploader(context, 
  variant: 'primary',
  onPicked: (FileInfo file) {
    console.log(file.path);
  },
);
  • add below lines in ios->Runner->info.plist
<key>NSPhotoLibraryUsageDescription</key>
<string>Allow Image access to upload your profile image</string>
<key>NSCameraUsageDescription</key>
<string>Allow Image access to upload your profile image</string>
Image Preview
preview([
  'https://picsum.photos/id/237/536/354',
  'https://picsum.photos/id/238/536/354',
  'https://picsum.photos/id/239/536/354',
])

menu(
  MenuList([
    MenuListItem(
      Icon(
        Icons.edit,
        size: 20,
      ),
      title: 'Edit',
      onPressed: () {
        // do something
      },
    ),
  ])
)

Component Widgets #

DatePicker Input
BilionsDatePicker(label: 'Date of Birth', onChanged: (date) => {}),
DateRangePicker Input
 BilionsDateRangePicker(
    label: 'Date of Birth',
    onChanged: (start, end) => {

    },
),
TextInput
BilionsTextInput(label: 'Full Name', onChanged: (text) => {})
Password Input
TODO
Avatar Image
Avatar(
  'https://i.pravatar.cc/150?img=3',
  title: 'Zin Kyaw Kyaw',
  subTitle: 'aj@bilions.org',
)
Image Slider
ImageSlider([
  'https://picsum.photos/id/237/536/354',
  'https://picsum.photos/id/238/536/354',
  'https://picsum.photos/id/239/536/354',
])
Primary Button
PrimaryButton(
  'Button Title',
  variant : 'success',
  onPressed: () {
    // do something
  },
)
Secondary Button
SecondaryButton(
  'Button Title',
  variant : 'success',
  onPressed: () {
    // do something
  },
)
Card
CardWidget(
  header: const Avatar(
    'https://i.pravatar.cc/150?img=3',
    title: 'Zin Kyaw Kyaw',
    subTitle: 'aj@bilions.org',
  ),
  body: Column(
    children: const [
      Span(
        "Lorem Ipsum is simply dummy text of the printing and variantsetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of variant and scrambled it to make a variant specimen book. It has survived not only five centuries, but also the leap into electronic variantsetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
      )
    ],
  ),
  footer: const Text('This is footer'),
)

Date formatter #

  • TODO Documentation

Access Theme Colors #

- BilionsColor.primary
- BilionsColor.primaryLight

- BilionsColor.warning
- BilionsColor.warningLight

- BilionsColor.danger
- BilionsColor.dangerLight

- BilionsColor.info
- BilionsColor.infoLight

- BilionsColor.success
- BilionsColor.successLight
...
18
likes
0
points
91
downloads

Publisher

verified publisherbilions.org

Weekly Downloads

Bilions UI components. Custom made alert, confirm, image preview, toast widgets, text input, date picker, bottom sheet menu. All widget are support with different theme variant such as primary, success, danger, info, warning.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

carousel_slider, flutter, flutter_svg, image_picker, intl, logger, path, photo_view

More

Packages that depend on bilions_ui