# flutter_smart_select **Repository Path**: swjt-hy/flutter_smart_select ## Basic Information - **Project Name**: flutter_smart_select - **Description**: SmartSelect allows you to easily convert your usual form select or dropdown into dynamic page, popup dialog, or sliding bottom sheet with various choices input such as radio, checkbox, switch, chips, or even custom input. Supports single and multiple choice. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![Pub Version](https://img.shields.io/pub/v/smart_select) ![GitHub](https://img.shields.io/github/license/davigmacode/flutter_smart_select) Buy Me A Coffee SmartSelect allows you to easily convert your usual form select or dropdown into dynamic page, popup dialog, or sliding bottom sheet with various choices input such as radio, checkbox, switch, chips, or even custom input. Supports single and multiple choice. Inspired by Smart Select component from [Framework7](https://framework7.io/). ## What's New in Version 4.x.x - Customizable every part on modal widget (header, footer, searchbar, confirm button, searchbar toggle) using style configuration or widget builder - Validate before confirm - Auto search on type - Accent marks handler on search - Highlight search result - Chips tile widget - Grid choice layout - Horizotal or vertical choice list scroll direction - Simplify class name and enum - Configurations supports `copyWith` and `merge` - Use `StatefulWidget` as state management - Easy shortcut to define configuration - Soft depends to other package ## To Do - Right-To-Left parameter support, currently this can be achieved using widget builder - Internally handle async choice items loader - Custom search handler - Choice items pagination (pull to refresh and pull to load more) - Add more test ## Migration from 4.0.0 to 4.2.0 - `modalValidation` function nows should return `String` to indicates the changes value is not valid and `null` or empty `String` to indicates the changes value is valid - To display tile with chips use param `S2Tile.body` and `S2TileChips`, instead of `S2ChipsTile` ## Migration from 3.0.x to 4.0.0 - The parameter `options` is removed, instead use `choiceItems` - Simplify class name and enum - `SmartSelectTile` to `S2Tile` - `SmartSelectOption` to `S2Choice` - `SmartSelectChoiceConfig` to `S2ChoiceConfig` - `SmartSelectChoiceStyle` to `S2ChoiceStyle` - `SmartSelectChoiceType` to `S2ChoiceType` - `SmartSelectModalConfig` to `S2ModalConfig` - `SmartSelectModalStyle` to `S2ModalStyle` - `SmartSelectModalHeaderStyle` to `S2ModalHeaderStyle` - `SmartSelectModalType` to `S2ModalType` - The parameter `builder` now is a collection of builder (`S2SingleBuilder` or `S2MultiBuilder`), instead use `tileBuilder` to create trigger tile widget. - The parameters `dense`, `enabled`, `isLoading`, `isTwoLine`, `leading`, `loadingText`, `padding`, `selected`, `trailing` is removed from `SmartSelect` class, instead use `builder.tile` or `tileBuilder` and return `S2Tile` widget, it's has all these parameters. - The parameter `onChange` nows return `S2SingleState state` or `S2MultiState state` instead of `T value` or `List value` - The parameter `choiceConfig.useWrap` is removed, instead use `choiceConfig.layout = S2ChoiceLayout.wrap` - The parameter `choiceConfig.builder` moved to `builder.choice` or `choiceBuilder` - The parameter `choiceConfig.titleBuilder` moved to `builder.choiceTitle` or `choiceTitleBuilder` - The parameter `choiceConfig.subtitleBuilder` moved to `builder.choiceSubtitle` or `choiceSubtitleBuilder` - The parameter `choiceConfig.secondaryBuilder` moved to `builder.choiceSecondary` or `choiceSecondaryBuilder` - The parameter `choiceConfig.dividerBuilder` moved to `builder.choiceDivider` or `choiceDividerBuilder` - The parameter `choiceConfig.emptyBuilder` moved to `builder.choiceEmpty` or `choiceEmptybuilder` - The parameter `choiceConfig.glowingOverscrollIndicatorColor` is removed, instead use `choiceConfig.overscrollColor` - The parameter `choiceConfig.spacing` and `choiceConfig.runSpacing` moved to `choiceConfig.style.spacing` and `choiceConfig.style.runSpacing` - The parameter `choiceConfig.useCheckmark` moved to `choiceConfig.style.showCheckmark` - The parameter `choiceConfig.padding` moved to `choiceConfig.style.wrapperPadding` - The default of grouped choice is not using sticky header now, instead use `groupBuilder` like this: ```dart dependencies: sticky_headers: "^0.1.8" ``` ```dart import 'package:sticky_headers/sticky_headers.dart'; SmartSelect.single/multiple( ..., ..., choiceGroupBuilder: (context, header, choices) { return StickyHeader( header: header, content: choices, ); }, ); ``` # Preview
Single Choice Multiple Choice
Modal Type Single Choice Modal Multiple Choice Modal
Chips Widget Single Choice Chips Multiple Choice Chips
Switch Widget None Multiple Choice Switch
Custom Tile Customize Tile
Modal Filter Modal Filter
Modal Confirm Modal Confirm
Modal Validation Modal Validation
Modal Selector Modal Selector
Modal Shape Modal Shape
Choice Items Choice Items
Choice Grouped Choice Grouped
Choice Builder Choice Builder
Download APK Demo App
# Features * Select single or multiple choice * Open choices modal in full page, bottom sheet, or popup dialog * Various choices input (radio, checkbox, switch, chips, or custom widget) * Various choices layout (list, wrap, or grid) * Grouping choices with easy support to sticky header * Searchable choices with highlighted result * Disabled or hidden choices * Customizable trigger/tile widget * Customizable modal style * Customizable modal header style * Customizable modal footer * Customizable choices style * Build choice items from any `List` * Easy load async choice items * and many more # Usage For a complete usage, please see the [example](https://pub.dev/packages/smart_select#-example-tab-). To read more about classes and other references used by `smart_select`, see the [API Reference](https://pub.dev/documentation/smart_select/latest/). ## Single Choice ```dart // available configuration for single choice SmartSelect.single({ // The primary content of the widget. // Used in trigger widget and header option String title, // The text displayed when the value is null String placeholder = 'Select one', // The current value of the single choice widget. @required T value, // Called when single choice value changed @required ValueChanged> onChange, // choice item list List> choiceItems, // other available configuration // explained below ..., ..., }) ``` ```dart // simple usage String value = 'flutter'; List> options = [ S2Choice(value: 'ion', title: 'Ionic'), S2Choice(value: 'flu', title: 'Flutter'), S2Choice(value: 'rea', title: 'React Native'), ]; @override Widget build(BuildContext context) { return SmartSelect.single( title: 'Frameworks', value: value, choiceItems: options, onChange: (state) => setState(() => value = state.value) ); } ``` ## Multiple Choice ```dart // available configuration for multiple choice SmartSelect.multiple({ // The primary content of the widget. // Used in trigger widget and header option String title, // The text displayed when the value is null String placeholder = 'Select one', // The current value of the single choice widget. @required List value, // Called when single choice value changed @required ValueChanged> onChange, // choice item list List> choiceItems, // other available configuration // explained below ..., ..., }) ``` ```dart // a simple usage List value = [2]; List> frameworks = [ S2Choice(value: 1, title: 'Ionic'), S2Choice(value: 2, title: 'Flutter'), S2Choice(value: 3, title: 'React Native'), ]; @override Widget build(BuildContext context) { return SmartSelect.multiple( title: 'Frameworks', value: value, choiceItems: options, onChange: (state) => setState(() => value = state.value), ); } ``` ## Choices ```dart // configuration SmartSelect.[single|multiple]({ // other configuration ..., ..., // choice item list List> choiceItems, // other configuration ..., ..., }); ``` `choiceItems` can be input directly as in the example below, more info about `S2Choice` can be found on the [API Reference](https://pub.dev/documentation/smart_select/latest/smart_select/S2Choice-class.html) ```dart SmartSelect.[single|multiple]( ..., ..., choiceItems: >[ S2Choice(value: 1, title: 'Ionic'), S2Choice(value: 2, title: 'Flutter'), S2Choice(value: 3, title: 'React Native'), ], ); ``` `choiceItems` also can be created from any list using helper provided by this package, like the example below ```dart List> days = [ { 'value': 'mon', 'title': 'Monday' }, { 'value': 'tue', 'title': 'Tuesday' }, { 'value': 'wed', 'title': 'Wednesday' }, { 'value': 'thu', 'title': 'Thursday' }, { 'value': 'fri', 'title': 'Friday' }, { 'value': 'sat', 'title': 'Saturday' }, { 'value': 'sun', 'title': 'Sunday' }, ]; SmartSelect.[single|multiple]( ..., ..., choiceItems: S2Choice.listFrom>( source: days, value: (index, item) => item['value'], title: (index, item) => item['title'], ), ); ``` ### Load Choice Item Asynchronously Please follow these [example](https://github.com/davigmacode/flutter_smart_select/blob/master/example/lib/features_option/option_async.dart) ## Modal Configuration More info about `S2ModalConfig` can be found on the [API Reference](https://pub.dev/documentation/smart_select/latest/smart_select/S2ModalConfig-class.html) ```dart // available configuration SmartSelect.[single|multiple]({ // other configuration ..., ..., // Modal validation of single choice widget ValidationCallback modalValidation, // Modal configuration S2ModalConfig modalConfig, // Configure modal style // shortcut to [modalConfig.style] S2ModalStyle modalStyle, // Configure modal header style // shortcut to [modalConfig.headerStyle] S2ModalHeaderStyle modalHeaderStyle, // Modal type to display choices // shortcut to [modalConfig.type] S2ModalType modalType, // Use different title with the trigger widget title // shortcut to [modalConfig.title] String modalTitle, // Whether the option list need to confirm // to return the changed value // shortcut to [modalConfig.useConfirm] bool modalConfirm, // Whether the options list modal use header or not // shortcut to [modalConfig.useHeader] bool modalHeader, // Whether the option list is filterable or not // shortcut to [modalConfig.useFilter] bool modalFilter, // Whether the filter is autocomplete or need confirmation // shortcut to [modalConfig.filterAuto] bool modalFilterAuto, // Custom searchbar hint // shortcut to [modalConfig.filterHint] String modalFilterHint, // other configuration ..., ..., }); ``` ### Modal Type By default SmartSelect will open choices modal in full page. You can change it by changing with this value: ```dart // Available option enum S2ModalType { // open in full page fullPage, // open in popup dialog popupDialog, // open in sliding bottom sheet bottomSheet, } ``` ### Modal Style ```dart // Available option to configure modal style S2ModalStyle({ // Modal border shape // used in popup dialog and bottom sheet ShapeBorder shape, // Modal elevation // used in popup dialog and bottom sheet double elevation, // Modal background color Color backgroundColor, // Modal clip behavior Clip clipBehavior, }) ``` ### Modal Header Style ```dart // Available option to configure modal header style S2ModalHeaderStyle({ // Header border shape ShapeBorder shape, // Header elevation double elevation, // Header background color Color backgroundColor, // Header brightness Brightness brightness, // Whether the header title is centered bool centerTitle, // Whether the header use automaticallyImplyLeading or not bool useLeading, // Header text style // used by title and search field TextStyle textStyle, // Header icon theme IconThemeData iconTheme, // Header actions icon theme IconThemeData actionsIconTheme, }) ``` ## Choices Configuration More info about `S2ChoiceConfig` can be found on the [API Reference](https://pub.dev/documentation/smart_select/latest/smart_select/S2ChoiceConfig-class.html) ```dart // Available option to configure choices SmartSelect.[single|multiple]({ // other configuration ..., ..., // choice configuration S2ChoiceConfig choiceConfig, // configure choice style // shortcut to [choiceConfig.style] S2ChoiceStyle choiceStyle, // configure choices group header style // shortcut to [choiceConfig.headerStyle] S2ChoiceHeaderStyle choiceHeaderStyle, // choice widget type // shortcut to [choiceConfig.type] S2ChoiceType choiceType, // choice layout to display items // shortcut to [choiceConfig.layout] S2ChoiceLayout choiceLayout, // choice list scroll direction // currently only support when // [layout] is [S2ChoiceLayout.wrap] // shortcut to [choiceConfig.direction] Axis choiceDirection, // Whether the choices list is grouped // shortcut to [choiceConfig.isGrouped] bool choiceGrouped, // Whether the choices item use divider or not // shortcut to [choiceConfig.useDivider] bool choiceDivider, // For grid choice layout // shortcut to [choiceConfig.gridDelegate] SliverGridDelegate choiceGrid, // other configuration ..., ..., }); ``` ### Choice Type By default SmartSelect will use `radios` for single choice and `checkboxes` for multiple choice, but it can change by changing with this value: ```dart // Type of choice input enum S2ChoiceType { // use radio widget // for single choice radios, // use checkbox widget // for multiple choice checkboxes, // use switch widget // for multiple choice switches, // use chip widget // for single and multiple choice chips, } ``` ### Choice Layout By default SmartSelect will use `list`, but it can change by changing with this value: ```dart // Layout of choice item enum S2ChoiceLayout { // use list view widget list, // use wrap view widget wrap, // use grid view widget grid, } ``` ### Choice Styles ```dart // Available option to configure choice style S2ChoiceStyle({ // How much space to place between children in a run in the main axis. // When use [SmartSelectChoiceType.chips] or [useWrap] is [true] double spacing, // How much space to place between the runs themselves in the cross axis. // When use [SmartSelectChoiceType.chips] or [useWrap] is [true] double runSpacing, // choices wrapper padding EdgeInsetsGeometry wrapperPadding, // Choices item padding EdgeInsetsGeometry padding, // choices item title style TextStyle titleStyle, // choices item subtitle style TextStyle subtitleStyle, // whether the chips use checkmark or not bool showCheckmark, // Where to place the control in widgets that use // [ListTile] to position a control next to a label. S2ChoiceControl control, // Highlight color Color highlightColor, // Primary color of selected choice item Color activeColor, // Primary color of unselected choice item Color color, // Secondary color of selected choice item Color activeAccentColor, // Secondary color of unselected choice item Color accentColor, // Brightness for selected Chip Brightness activeBrightness, // Brightness for unselected Chip Brightness brightness, // Opacity for selected Chip border, only effect when // [activeBrightness] is [Brightness.light] double activeBorderOpacity, // Opacity for unselected chip border, only effect when // [brightness] is [Brightness.light] double borderOpacity, // Shape clip behavior Clip clipBehavior, }) ``` ### Choice Header Style ```dart // Available option to configure choices group header widget style S2ChoiceHeaderStyle({ // Group header background color Color backgroundColor, // Highlight color Color highlightColor, // Group header text style TextStyle textStyle, // Group header padding EdgeInsetsGeometry padding, // Group header height double height, }) ``` ## Builder Widget ### Builder for Single Choice ```dart // available builder configuration // for single choice SmartSelect.single({ // other configuration ..., ..., // Builder collection of single choice widget S2SingleBuilder builder, // Builder for custom tile widget // shortcut to [builder.tile] S2WidgetBuilder> tileBuilder, // Builder for custom modal widget // shortcut to [builder.modal] S2WidgetBuilder> modalBuilder, // Builder for custom modal header widget // shortcut to [builder.modalHeader] S2WidgetBuilder> modalHeaderBuilder, // Builder for custom modal actions widget // shortcut to [builder.modalActions] S2ListWidgetBuilder> modalActionsBuilder, // Builder for custom modal confirm action widget // shortcut to [builder.modalConfirm] S2WidgetBuilder> modalConfirmBuilder, // Builder for divider widget between header, body, and footer modal // shortcut to [builder.modalDivider] S2WidgetBuilder> modalDividerBuilder, // Builder for custom footer widget // shortcut to [builder.modalFooter] S2WidgetBuilder> modalFooterBuilder, // other configuration ..., ..., }); ``` ### Builder for Multiple Choice ```dart // available builder configuration // for multiple choice SmartSelect.multiple({ // other configuration ..., ..., // Builder collection of single choice widget S2MultiBuilder builder, // Builder for custom tile widget // shortcut to [builder.tile] S2WidgetBuilder> tileBuilder, // Builder for custom modal widget // shortcut to [builder.modal] S2WidgetBuilder> modalBuilder, // Builder for custom modal header widget // shortcut to [builder.modalHeader] S2WidgetBuilder> modalHeaderBuilder, // Builder for custom modal actions widget // shortcut to [builder.modalActions] S2ListWidgetBuilder> modalActionsBuilder, // Builder for custom modal confirm action widget // shortcut to [builder.modalConfirm] S2WidgetBuilder> modalConfirmBuilder, // Builder for divider widget between header, body, and footer modal // shortcut to [builder.modalDivider] S2WidgetBuilder> modalDividerBuilder, // Builder for custom footer widget // shortcut to [builder.modalFooter] S2WidgetBuilder> modalFooterBuilder, // other configuration ..., ..., }); ``` ### Other Builder ```dart // another builder configuration SmartSelect.[single|multiple]({ // other configuration ..., ..., // Builder for modal filter widget // shortcut to [builder.modalFilter] S2WidgetBuilder modalFilterBuilder, // Builder for modal filter toggle widget // shortcut to [builder.modalFilterToggle] S2WidgetBuilder modalFilterToggleBuilder, // Builder for each custom choices item widget // shortcut to [builder.choice] S2ChoiceBuilder choiceBuilder, // Builder for each custom choices item title widget // shortcut to [builder.choiceTitle] S2ChoiceBuilder choiceTitleBuilder, // Builder for each custom choices item subtitle widget // shortcut to [builder.choiceSubtitle] S2ChoiceBuilder choiceSubtitleBuilder, // Builder for each custom choices item secondary widget // shortcut to [builder.choiceSecondary] S2ChoiceBuilder choiceSecondaryBuilder, /// Builder for custom divider widget between choices item // shortcut to [builder.choiceDivider] IndexedWidgetBuilder choiceDividerBuilder, // Builder for custom empty display // shortcut to [builder.choiceEmpty] S2WidgetBuilder choiceEmptyBuilder, // A widget builder for custom choices group // shortcut to [builder.choiceGroup] S2ChoiceGroupBuilder choiceGroupBuilder, // A widget builder for custom header choices group // shortcut to [builder.choiceHeader] S2ChoiceHeaderBuilder choiceHeaderBuilder, // other configuration ..., ..., }); ``` ## Tile Widget ### Default Tile ```dart // Default tile/trigger widget S2Tile({ // The value of the selected option. String value, // The primary content of the list tile. Widget title, // A widget to display before the title. // Typically an [Icon] or a [CircleAvatar] widget. Widget leading, // A widget to display after the title. // Typically an [Icon] widget. Widget trailing, // Whether this list tile is intended to display loading stats. bool isLoading, // String text used as loading text String loadingText, // Whether this list tile is intended to display two lines of text. bool isTwoLine, // Whether this list tile is interactive. bool enabled, // If this tile is also [enabled] then icons and text are rendered with the same color. bool selected, // Whether this list tile is part of a vertically dense list. bool dense, // Whether the [value] is displayed or not bool hideValue, // The tile's internal padding. EdgeInsetsGeometry padding, // Called when the user taps this list tile. GestureTapCallback onTap, // widget to display below the tile // usually used to display chips with S2TileChips Widget body, }) ``` ```dart // usage example SmartSelect.single( ..., ..., tileBuilder: (context, state) { return S2Tile( title: state.titleWidget, value: state.valueDisplay, onTap: state.showModal, isLoading: true, ); }, ); // usage example from state SmartSelect.multiple( ..., ..., tileBuilder: (context, state) { return S2Tile.fromState( state, isLoading: true, ); }, ); ``` ### Tile With Chips ```dart // Chips tile/trigger widget S2TileChips({ // List of value of the selected choices. int chipLength, // Widget builder for chip label item IndexedWidgetBuilder chipLabelBuilder, // Widget builder for chip avatar item IndexedWidgetBuilder chipAvatarBuilder, // Widget builder for chip item IndexedWidgetBuilder chipBuilder, // Called when the user delete the chip item. ValueChanged chipOnDelete, // Chip color Color chipColor, // Chip border opacity double chipBorderOpacity, // Chip brightness Brightness chipBrightness, // Chip delete button color Color chipDeleteColor, // Chip delete button icon Icon chipDeleteIcon, // Chip spacing double chipSpacing, // Chip run spacing double chipRunSpacing, // Chip shape border ShapeBorder chipShape, // The [Widget] displayed when the [values] is null Widget placeholder, // Whether the chip list is scrollable or not bool scrollable, // Chip list padding EdgeInsetsGeometry padding, }) ``` ```dart /// usage example SmartSelect.multiple( ..., ..., value: users, tileBuilder: (context, state) { return S2Tile.fromState( state, hideValue: true, body: S2TileChips( chipLength: state.valueObject.length, chipLabelBuilder: (context, i) { return Text(state.valueObject[i].title); }, chipAvatarBuilder: (context, i) { return CircleAvatar( backgroundImage: NetworkImage(state.valueObject[i].meta['picture']['thumbnail']) ); }, chipOnDelete: (i) { setState(() => users.remove(state.valueObject[i].value)); }, chipColor: Colors.blue, chipBrightness: Brightness.dark, chipBorderOpacity: .5, ), ); }, ); ``` # License ``` Copyright (c) 2020 Irfan Vigma Taufik Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```