hmwidget 0.0.3 copy "hmwidget: ^0.0.3" to clipboard
hmwidget: ^0.0.3 copied to clipboard

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.3
  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:Scaffold(
            body: Center(
            child: HMButton(
                  onPressed: () => print("Pressed"),
                  buttonVariant: HMButtonVariant.outlined,
                  content: 'Press',
                  textColor: Colors.blue,
              ),
          ),
        ),
      ),
      ),
    );

See the example app for more complex examples.

1
likes
110
points
57
downloads

Publisher

unverified uploader

Weekly Downloads

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

Documentation

API reference

License

unknown (license)

Dependencies

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

More

Packages that depend on hmwidget