horizontal_select 0.0.1 copy "horizontal_select: ^0.0.1" to clipboard
horizontal_select: ^0.0.1 copied to clipboard

unlisted

An horizontal select widget.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:horizontal_select/horizontal_select.dart';
import 'package:horizontal_select/model/horizontal_select_item.dart';
import 'package:horizontal_select/model/horizontal_select_style.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: <Widget>[
          HorizontalSelect(
            multiSelect: false,
            itemTextStyle: TextStyle(
              fontSize: 14.0,
            ),
            itemPadding: EdgeInsets.all(
              4.0,
            ),
            shapeBorder: RoundedRectangleBorder(
              borderRadius: BorderRadius.circular(
                8.0,
              ),
            ),
            items: [
              HorizontalSelectItem(
                text: "10",
                value: 10,
              ),
              HorizontalSelectItem(
                text: "10",
                value: 10,
              ),
            ],
            style: HorizontalSelectStyle(
              itemColor: Colors.blue,
              selectedItemColor: Colors.blueGrey,
            ),
            onItemSelect: (index, item) {
              print(index);
            },
          )
        ],
      ),
    );
  }
}