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

outdated

A Beautiful and Simple Custom Radio Group widget for Flutter. It can be fully customized with label, titles, labelStyle, titleStyle, radioIcons, etc. It also contains single radio list tile. You can u [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:example/src/custom_radio_list_group.dart';
import 'package:example/src/gender_radio_group.dart';
import 'package:example/src/modal_bottom_sheet_radio_group.dart';
import 'package:example/src/radio_list_group.dart';
import 'package:flutter/cupertino.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Custom Radio Group',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: const CupertinoNavigationBar(
        middle: Text("Custom Radio Group"),
      ),
      body: ListView(
        padding: const EdgeInsets.all(16),
        children: const [
          ModalBottomSheetRadioGroup(),
          SizedBox(height: 24,),
          GenderRadioGroup(),
          SizedBox(height: 24,),
          RadioListGroup(),
          SizedBox(height: 24,),
          CustomRadioListGroup()
        ],
      ),
    );
  }
}
18
likes
0
points
10
downloads

Publisher

verified publisher1morecode.com

Weekly Downloads

A Beautiful and Simple Custom Radio Group widget for Flutter. It can be fully customized with label, titles, labelStyle, titleStyle, radioIcons, etc. It also contains single radio list tile. You can use this library with bottom sheet radio group as modern dropdown with search feature.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on matertino_radio