Merge pull request #6 from FulbertoDev/main
(feat): country code picker style (dialog or modal bottom sheet) sugg…
This commit is contained in:
@@ -121,6 +121,7 @@ class MyAppState extends State<MyApp> {
|
|||||||
flagDecoration: BoxDecoration(
|
flagDecoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(7),
|
borderRadius: BorderRadius.circular(7),
|
||||||
),
|
),
|
||||||
|
pickerStyle: PickerStyle.bottomSheet,
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 400,
|
width: 400,
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ library country_code_picker;
|
|||||||
import 'package:collection/collection.dart' show IterableExtension;
|
import 'package:collection/collection.dart' show IterableExtension;
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import 'src/bottom_sheet.dart';
|
||||||
|
import 'src/constants.dart';
|
||||||
import 'src/country_code.dart';
|
import 'src/country_code.dart';
|
||||||
import 'src/country_codes.dart';
|
import 'src/country_codes.dart';
|
||||||
import 'src/selection_dialog.dart';
|
import 'src/selection_dialog.dart';
|
||||||
@@ -11,6 +13,8 @@ export 'src/country_code.dart';
|
|||||||
export 'src/country_codes.dart';
|
export 'src/country_codes.dart';
|
||||||
export 'src/country_localizations.dart';
|
export 'src/country_localizations.dart';
|
||||||
export 'src/selection_dialog.dart';
|
export 'src/selection_dialog.dart';
|
||||||
|
export 'src/bottom_sheet.dart';
|
||||||
|
export 'src/constants.dart';
|
||||||
|
|
||||||
class CountryCodePicker extends StatefulWidget {
|
class CountryCodePicker extends StatefulWidget {
|
||||||
final ValueChanged<CountryCode>? onChanged;
|
final ValueChanged<CountryCode>? onChanged;
|
||||||
@@ -30,6 +34,9 @@ class CountryCodePicker extends StatefulWidget {
|
|||||||
final TextOverflow textOverflow;
|
final TextOverflow textOverflow;
|
||||||
final Icon closeIcon;
|
final Icon closeIcon;
|
||||||
|
|
||||||
|
///Picker style [BottomSheet] or [Dialog]
|
||||||
|
final PickerStyle pickerStyle;
|
||||||
|
|
||||||
/// Barrier color of ModalBottomSheet
|
/// Barrier color of ModalBottomSheet
|
||||||
final Color? barrierColor;
|
final Color? barrierColor;
|
||||||
|
|
||||||
@@ -144,6 +151,7 @@ class CountryCodePicker extends StatefulWidget {
|
|||||||
this.dialogBackgroundColor,
|
this.dialogBackgroundColor,
|
||||||
this.closeIcon = const Icon(Icons.close),
|
this.closeIcon = const Icon(Icons.close),
|
||||||
this.countryList = codes,
|
this.countryList = codes,
|
||||||
|
this.pickerStyle = PickerStyle.dialog,
|
||||||
this.dialogItemPadding = const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
|
this.dialogItemPadding = const EdgeInsets.symmetric(horizontal: 24, vertical: 8),
|
||||||
this.searchPadding = const EdgeInsets.symmetric(horizontal: 24),
|
this.searchPadding = const EdgeInsets.symmetric(horizontal: 24),
|
||||||
this.headerAlignment = MainAxisAlignment.spaceBetween,
|
this.headerAlignment = MainAxisAlignment.spaceBetween,
|
||||||
@@ -170,7 +178,7 @@ class CountryCodePicker extends StatefulWidget {
|
|||||||
elements = elements.where((criteria) => uppercaseCustomList.contains(criteria.code) || uppercaseCustomList.contains(criteria.name) || uppercaseCustomList.contains(criteria.dialCode)).toList();
|
elements = elements.where((criteria) => uppercaseCustomList.contains(criteria.code) || uppercaseCustomList.contains(criteria.name) || uppercaseCustomList.contains(criteria.dialCode)).toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
return CountryCodePickerState(elements);
|
return CountryCodePickerState(elements, pickerStyle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -178,20 +186,27 @@ class CountryCodePickerState extends State<CountryCodePicker> {
|
|||||||
CountryCode? selectedItem;
|
CountryCode? selectedItem;
|
||||||
List<CountryCode> elements = [];
|
List<CountryCode> elements = [];
|
||||||
List<CountryCode> favoriteElements = [];
|
List<CountryCode> favoriteElements = [];
|
||||||
|
PickerStyle pickerStyle;
|
||||||
|
|
||||||
CountryCodePickerState(this.elements);
|
CountryCodePickerState(this.elements, this.pickerStyle);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
Widget internalWidget;
|
Widget internalWidget;
|
||||||
if (widget.builder != null) {
|
if (widget.builder != null) {
|
||||||
internalWidget = InkWell(
|
internalWidget = InkWell(
|
||||||
onTap: widget.enabled ? showCountryCodePickerDialog : null,
|
onTap: pickerStyle == PickerStyle.dialog
|
||||||
|
? showCountryCodePickerDialog
|
||||||
|
: showCountryCodePickerBottomSheet
|
||||||
child: widget.builder!(selectedItem),
|
child: widget.builder!(selectedItem),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
internalWidget = TextButton(
|
internalWidget = TextButton(
|
||||||
onPressed: widget.enabled ? showCountryCodePickerDialog : null,
|
onPressed: widget.enabled
|
||||||
|
? pickerStyle == PickerStyle.dialog
|
||||||
|
? showCountryCodePickerDialog
|
||||||
|
: showCountryCodePickerBottomSheet
|
||||||
|
: null,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: widget.padding,
|
padding: widget.padding,
|
||||||
child: Flex(
|
child: Flex(
|
||||||
@@ -336,6 +351,43 @@ class CountryCodePickerState extends State<CountryCodePicker> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void showCountryCodePickerBottomSheet() async {
|
||||||
|
final item = await showModalBottomSheet(
|
||||||
|
isScrollControlled: true,
|
||||||
|
context: context,
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
elevation: 0,
|
||||||
|
builder: (ctx) {
|
||||||
|
return SelectionBottomSheet(
|
||||||
|
elements,
|
||||||
|
favoriteElements,
|
||||||
|
showCountryOnly: widget.showCountryOnly,
|
||||||
|
emptySearchBuilder: widget.emptySearchBuilder,
|
||||||
|
searchDecoration: widget.searchDecoration,
|
||||||
|
searchStyle: widget.searchStyle,
|
||||||
|
textStyle: widget.dialogTextStyle,
|
||||||
|
boxDecoration: widget.boxDecoration,
|
||||||
|
showFlag: widget.showFlagDialog ?? widget.showFlag,
|
||||||
|
flagWidth: widget.flagWidth,
|
||||||
|
size: widget.dialogSize,
|
||||||
|
backgroundColor: widget.dialogBackgroundColor,
|
||||||
|
barrierColor: widget.barrierColor,
|
||||||
|
hideSearch: widget.hideSearch,
|
||||||
|
closeIcon: widget.closeIcon,
|
||||||
|
flagDecoration: widget.flagDecoration,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
if (item == null) return;
|
||||||
|
|
||||||
|
setState(() {
|
||||||
|
selectedItem = item;
|
||||||
|
});
|
||||||
|
|
||||||
|
_publishSelection(item);
|
||||||
|
}
|
||||||
|
|
||||||
void _publishSelection(CountryCode countryCode) {
|
void _publishSelection(CountryCode countryCode) {
|
||||||
if (widget.onChanged != null) {
|
if (widget.onChanged != null) {
|
||||||
widget.onChanged!(countryCode);
|
widget.onChanged!(countryCode);
|
||||||
|
|||||||
207
lib/src/bottom_sheet.dart
Normal file
207
lib/src/bottom_sheet.dart
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import 'country_code.dart';
|
||||||
|
import 'country_localizations.dart';
|
||||||
|
|
||||||
|
/// selection bottom sheet used for selection of the country code
|
||||||
|
class SelectionBottomSheet extends StatefulWidget {
|
||||||
|
final List<CountryCode> elements;
|
||||||
|
final bool? showCountryOnly;
|
||||||
|
final InputDecoration searchDecoration;
|
||||||
|
final TextStyle? searchStyle;
|
||||||
|
final TextStyle? textStyle;
|
||||||
|
final BoxDecoration? boxDecoration;
|
||||||
|
final WidgetBuilder? emptySearchBuilder;
|
||||||
|
final bool? showFlag;
|
||||||
|
final double flagWidth;
|
||||||
|
final Decoration? flagDecoration;
|
||||||
|
final Size? size;
|
||||||
|
final bool hideSearch;
|
||||||
|
final Icon? closeIcon;
|
||||||
|
|
||||||
|
/// Background color of SelectionBottomSheet
|
||||||
|
final Color? backgroundColor;
|
||||||
|
|
||||||
|
/// Boxshaow color of SelectionBottomSheet that matches CountryCodePicker barrier color
|
||||||
|
final Color? barrierColor;
|
||||||
|
|
||||||
|
/// elements passed as favorite
|
||||||
|
final List<CountryCode> favoriteElements;
|
||||||
|
|
||||||
|
SelectionBottomSheet(
|
||||||
|
this.elements,
|
||||||
|
this.favoriteElements, {
|
||||||
|
Key? key,
|
||||||
|
this.showCountryOnly,
|
||||||
|
this.emptySearchBuilder,
|
||||||
|
InputDecoration searchDecoration = const InputDecoration(),
|
||||||
|
this.searchStyle,
|
||||||
|
this.textStyle,
|
||||||
|
this.boxDecoration,
|
||||||
|
this.showFlag,
|
||||||
|
this.flagDecoration,
|
||||||
|
this.flagWidth = 32,
|
||||||
|
this.size,
|
||||||
|
this.backgroundColor,
|
||||||
|
this.barrierColor,
|
||||||
|
this.hideSearch = false,
|
||||||
|
this.closeIcon,
|
||||||
|
}) : searchDecoration = searchDecoration.prefixIcon == null
|
||||||
|
? searchDecoration.copyWith(prefixIcon: const Icon(Icons.search))
|
||||||
|
: searchDecoration,
|
||||||
|
super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<StatefulWidget> createState() => _SelectionBottomSheetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SelectionBottomSheetState extends State<SelectionBottomSheet> {
|
||||||
|
/// this is useful for filtering purpose
|
||||||
|
late List<CountryCode> filteredElements;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) => Padding(
|
||||||
|
padding: const EdgeInsets.all(0.0),
|
||||||
|
child: Container(
|
||||||
|
clipBehavior: Clip.hardEdge,
|
||||||
|
width: widget.size?.width ?? MediaQuery.of(context).size.width,
|
||||||
|
height:
|
||||||
|
widget.size?.height ?? MediaQuery.of(context).size.height * 0.85,
|
||||||
|
decoration: widget.boxDecoration ??
|
||||||
|
BoxDecoration(
|
||||||
|
color: widget.backgroundColor ?? Colors.white,
|
||||||
|
borderRadius: const BorderRadius.all(Radius.circular(8.0)),
|
||||||
|
boxShadow: [
|
||||||
|
BoxShadow(
|
||||||
|
color: widget.barrierColor ?? Colors.grey.withOpacity(1),
|
||||||
|
spreadRadius: 5,
|
||||||
|
blurRadius: 7,
|
||||||
|
offset: const Offset(0, 3), // changes position of shadow
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
padding: const EdgeInsets.all(0),
|
||||||
|
iconSize: 20,
|
||||||
|
icon: widget.closeIcon!,
|
||||||
|
onPressed: () => Navigator.pop(context),
|
||||||
|
),
|
||||||
|
if (!widget.hideSearch)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 24),
|
||||||
|
child: TextField(
|
||||||
|
style: widget.searchStyle,
|
||||||
|
decoration: widget.searchDecoration,
|
||||||
|
onChanged: _filterElements,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: ListView(
|
||||||
|
children: [
|
||||||
|
widget.favoriteElements.isEmpty
|
||||||
|
? const DecoratedBox(decoration: BoxDecoration())
|
||||||
|
: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
...widget.favoriteElements.map(
|
||||||
|
(f) => SimpleDialogOption(
|
||||||
|
child: _buildOption(f),
|
||||||
|
onPressed: () {
|
||||||
|
_selectItem(f);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const Divider(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (filteredElements.isEmpty)
|
||||||
|
_buildEmptySearchWidget(context)
|
||||||
|
else
|
||||||
|
...filteredElements.map(
|
||||||
|
(e) => SimpleDialogOption(
|
||||||
|
child: _buildOption(e),
|
||||||
|
onPressed: () {
|
||||||
|
_selectItem(e);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
Widget _buildOption(CountryCode e) {
|
||||||
|
return SizedBox(
|
||||||
|
width: 400,
|
||||||
|
child: Flex(
|
||||||
|
direction: Axis.horizontal,
|
||||||
|
children: <Widget>[
|
||||||
|
if (widget.showFlag!)
|
||||||
|
Flexible(
|
||||||
|
child: Container(
|
||||||
|
margin: const EdgeInsets.only(right: 16.0),
|
||||||
|
decoration: widget.flagDecoration,
|
||||||
|
clipBehavior:
|
||||||
|
widget.flagDecoration == null ? Clip.none : Clip.hardEdge,
|
||||||
|
child: Image.asset(
|
||||||
|
e.flagUri!,
|
||||||
|
package: 'country_code_picker',
|
||||||
|
width: widget.flagWidth,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
flex: 4,
|
||||||
|
child: Text(
|
||||||
|
widget.showCountryOnly!
|
||||||
|
? e.toCountryStringOnly()
|
||||||
|
: e.toLongString(),
|
||||||
|
overflow: TextOverflow.fade,
|
||||||
|
style: widget.textStyle,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildEmptySearchWidget(BuildContext context) {
|
||||||
|
if (widget.emptySearchBuilder != null) {
|
||||||
|
return widget.emptySearchBuilder!(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Center(
|
||||||
|
child: Text(CountryLocalizations.of(context)?.translate('no_country') ??
|
||||||
|
'No country found'),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
filteredElements = widget.elements;
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _filterElements(String s) {
|
||||||
|
s = s.toUpperCase();
|
||||||
|
setState(() {
|
||||||
|
filteredElements = widget.elements
|
||||||
|
.where((e) =>
|
||||||
|
e.code!.contains(s) ||
|
||||||
|
e.dialCode!.contains(s) ||
|
||||||
|
e.name!.toUpperCase().contains(s))
|
||||||
|
.toList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _selectItem(CountryCode e) {
|
||||||
|
Navigator.pop(context, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
1
lib/src/constants.dart
Normal file
1
lib/src/constants.dart
Normal file
@@ -0,0 +1 @@
|
|||||||
|
enum PickerStyle { dialog, bottomSheet, fullScreen }
|
||||||
Reference in New Issue
Block a user