flutter_util_widgets 1.0.4 copy "flutter_util_widgets: ^1.0.4" to clipboard
flutter_util_widgets: ^1.0.4 copied to clipboard

outdated

A flutter package that provides common useful widgets. It's constantly updated.

flutter_util_widgets.dart #

pub package

A flutter package that provides a variety of useful widgets. It's constantly updated.

Install the package #

1. Add this to your package's pubspec.yaml file: #

flutter_util_widgets: ^1.0.4

2. Update dependencies: #

You can install packages from the command line:

$ flutter pub get

3. Import it on your app #

Now in your Dart code, you can use:

import 'package:flutter_util_widgets/flutter_util_widgets.dart';

Using the package #

1. Switcher widget:

Screenshot:
Code:
import 'package:flutter/material.dart';

import 'package:flutter_util_widgets/flutter_util_widgets.dart';

class TestWidget extends StatelessWidget {
    @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Flutter Util Widgets'),
      ),
      body: Center(
        child: Padding(
          padding: const EdgeInsets.all(16.0),
          child: Column(
            children: <Widget>[
              Row(
                children: <Widget>[
                  Expanded(
                    child: Text(
                      'Squared',
                    ),
                  ),
                  Switcher(onChange: print),
                ],
              ),
              Row(
                children: <Widget>[
                  Expanded(
                    child: Text(
                      'Rounded',
                    ),
                  ),
                  Switcher.rounded(
                    initialValue: true,
                    onChange: print,
                  ),
                ],
              ),
              Switcher.label(
                label: 'With label',
                onChange: print,
              ),
              Switcher.labelAndRounded(
                label: 'With label and rounded',
                onChange: print,
              ),
              Switcher.label(
                initialValue: true,
                label: 'Customizing active color and label style',
                labelStyle: TextStyle(color: Theme.of(context).primaryColor),
                activeColor: Colors.amber,
                onChange: print,
              ),
              Switcher.labelAndRounded(
                mainAxisAlignment: MainAxisAlignment.end,
                label: 'Customizing disabled color and alignment',
                disableColor: Colors.blueGrey[300],
                onChange: print,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
0
pub points
43%
popularity

Publisher

unverified uploader

A flutter package that provides common useful widgets. It&#x27;s constantly updated.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_util_widgets