flutter_radio_button_group 0.0.4+5 copy "flutter_radio_button_group: ^0.0.4+5" to clipboard
flutter_radio_button_group: ^0.0.4+5 copied to clipboard

Radio Buttons for people how like to change the Design for their own needs

flutter_radio_button_group #

Radio Buttons for people how like to change the Design for their own needs.

Getting Started #

Example: #

radio button example image

Importing: #

dependencies:
  flutter_radio_button_group: ^0.0.2+3

Code Example: #

import 'package:flutter_radio_button_group/flutter_radio_button_group.dart';

class RadioButtonExample extends StatefulWidget {
  @override
  _RadioButtonExampleState createState() => _RadioButtonExampleState();
}

class _RadioButtonExampleState extends State<RadioButtonExample> {
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new FlutterRadioButtonGroup(
          items: [
            "Banana",
            "Mango",
            "Apple",
            "Pineapple",
          ],
          onSelected: (String selected) {
            print("Selected: $selected");
          }),
    );
  }
}
2
likes
100
pub points
66%
popularity

Publisher

unverified uploader

Radio Buttons for people how like to change the Design for their own needs

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_radio_button_group