All Projects → biessek → Flutter_country_picker

biessek / Flutter_country_picker

Licence: mit
A Flutter Country Picker Widget with support to country dialing codes

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter country picker

Jellyfin Plugin Lastfm
LastFM plugin for the Jellyfin media system. Fork of the Emby Last.FM plug-in
Stars: ✭ 43 (-12.24%)
Mutual labels:  plugin
Grails Audit Logging Plugin
The Grails Audit Logging Plugin
Stars: ✭ 45 (-8.16%)
Mutual labels:  plugin
Documentation
Online documentation and tracking tools for Naninovel — writer-friendly visual novel engine
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Sublimall Server
Server behind Sublimall SublimeText plugin
Stars: ✭ 43 (-12.24%)
Mutual labels:  plugin
Fworldgenerator
Procedural world generator (plugin) for Unreal Engine 4
Stars: ✭ 45 (-8.16%)
Mutual labels:  plugin
Scxcodeminimap
Sublime Text like Minimap for Xcode
Stars: ✭ 1,037 (+2016.33%)
Mutual labels:  plugin
Marked
Confluence macro plugin which renders remote Markdown.
Stars: ✭ 42 (-14.29%)
Mutual labels:  plugin
Consulo Csharp
Languages: C#
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Vuepress Plugin Mermaidjs
Vuepress plugin for mermaid.js diagrams
Stars: ✭ 45 (-8.16%)
Mutual labels:  plugin
Honeybot
🛩 A python IRC bot with simple plugins dev. Ignited in mauritius, first-timers friendly!
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Baseplug
MVC audio plugin framework for rust
Stars: ✭ 44 (-10.2%)
Mutual labels:  plugin
Dotenv Webpack
A secure webpack plugin that supports dotenv and other environment variables and only exposes what you choose and use.
Stars: ✭ 1,022 (+1985.71%)
Mutual labels:  plugin
Mybatis Generator Plugin
Mybatis Generator 代码生成插件拓展,增加:查询单条数据插件(SelectOneByExamplePlugin)、MySQL分页插件(LimitPlugin)、数据Model链式构建插件(ModelBuilderPlugin)、Example Criteria 增强插件(ExampleEnhancedPlugin)、Example 目标包修改插件(ExampleTargetPlugin)、批量插入插件(BatchInsertPlugin)、逻辑删除插件(LogicalDeletePlugin)、数据Model属性对应Column获取插件(ModelColumnPlugin)、存在即更新(UpsertPlugin)、Selective选择插入更新增强插件(SelectiveEnhancedPlugin)、Table增加前缀插件(TableSuffixPlugin)、自定义注释插件(CommentPlugin)、增量插件(IncrementsPlugin)、查询结果选择性返回插件(SelectSelectivePlugin)、乐观锁插件(OptimisticLockerPlugin)、LombokPlugin等拓展。
Stars: ✭ 1,038 (+2018.37%)
Mutual labels:  plugin
Yoast Seo For Typo3
Yoast SEO plugin for TYPO3
Stars: ✭ 43 (-12.24%)
Mutual labels:  plugin
Umi Plugin Apollo
Apollo graphql plugin for umi
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Artifactory Debian
🔧 📦 Tools to use Artifactory as a Debian (APT) repository, and dput DEB packages into it, or upload them to Bintray.
Stars: ✭ 42 (-14.29%)
Mutual labels:  plugin
Pytest Mimesis
Mimesis integration with the pytest test runner. This plugin provider useful fixtures based on providers from Mimesis.
Stars: ✭ 46 (-6.12%)
Mutual labels:  plugin
Chosen Order
Chosen Order is a plugin for Chosen which provides functions to handle the order of the selection
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Zsh Fzy
Use the fzy fuzzy-finder in Zsh
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin
Steambridge
A UE4 implementation of the Steamworks API.
Stars: ✭ 48 (-2.04%)
Mutual labels:  plugin

Pub

flutter_country_picker

A Flutter Country Picker Widget with support to country dialing codes

Usage

Add the CountryPicker widget in your layout and use the onChanged callback.
Full example

///full Great Britain sample.
///static const Country GB = Country(
///    asset: "assets/flags/gb_flag.png",
///    dialingCode: "44",
///    isoCode: "GB",
///    name: "United Kingdom",
///    currency: "British pound",
///    currencyISO: "GBP",
///  );


 @override
 Widget build(BuildContext context) {
   return new Scaffold(
     appBar: new AppBar(
       title: Text('Flutter Country Picker Demo'),
     ),
     body: new Center(
       child: CountryPicker(
         dense: false,
         showFlag: true,  //displays flag, true by default
         showDialingCode: false, //displays dialing code, false by default
         showName: true, //displays country name, true by default
         showCurrency: false, //eg. 'British pound'
         showCurrencyISO: true, //eg. 'GBP'
         onChanged: (Country country) {
           setState(() {
             _selected = country;
           });
         },
         selectedCountry: _selected,
       ),
     ),
   );
 }

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].