hmwidget 0.0.2+2 copy "hmwidget: ^0.0.2+2" to clipboard
hmwidget: ^0.0.2+2 copied to clipboard

outdated

Easy to use open source UI library with Widgets to build flutter app.

HM Widget #

Easy to use open source UI library with Widgets to build flutter app.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and runflutter pub get):
dependencies:
  hmwidget: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:hmwidget/hmwidget.dart';

Get started #

There are a number of widget that you can customize:

  • HMButton
  • HMIconButton
  • HMCheckBox
  • HMSwitch
  • HMSlider
  • HMRangeSlider
  • HMTextField
  • HMRadio
  • HMSelect
  • HMAutoComplete

Example #

import 'package:flutter/material.dart';
import 'package:hmwidget/hmwidget.dart';
void main() => runApp(
      const MaterialApp(
        home: Material(
          child: Center(
            child: HMButton(
                  onPressed: () => print("Pressed"),
                  buttonVariant: HMButtonVariant.outlined,
                  content: 'Press',
                  textColor: Colors.blue,
              ),
          ),
        ),
      ),
    );
}

See the example app for more complex examples.

1
likes
0
points
44
downloads

Publisher

unverified uploader

Weekly Downloads

Easy to use open source UI library with Widgets to build flutter app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, file_picker, flutter, flutter_colorpicker, flutter_hooks, image_picker, path_provider, styled_widget

More

Packages that depend on hmwidget