GithubHelp home page GithubHelp logo

Comments (3)

Daniel-Ioannou avatar Daniel-Ioannou commented on July 17, 2024

@AamilLiveKeeping, Not sure if I understand what you mean by "Initial Country in textfield". Can you please elaborate more or provide a code example?

from flutter_country_picker.

AamilLiveKeeping avatar AamilLiveKeeping commented on July 17, 2024

Like this

// Initial selection and favorite can be one of code ('IT') OR dial_code('+39') initialSelection: 'IN',

What is happening now if i entered country code instead of ISO 24 (country name) it is not throwing error we should provide both country code as well as ISO 24 name

For more info reach out this plug in country_code_picker

from flutter_country_picker.

Daniel-Ioannou avatar Daniel-Ioannou commented on July 17, 2024

country_picker and country_code_picker is not the same package.
This package(country_picker) provide a bottom sheet dialog with a list of countries. The package does not hold the state of the selected country so there is no need for a initial country.

In the example below a local variable hold the selected country not the package.
You can initialize this local variable from your API using CountryParser.tryParse("").

import 'package:country_picker/country_picker.dart';

class Example extends StatefulWidget {
 const Example({Key? key}) : super(key: key);

 @override
 State<Example> createState() => _ExampleState();
}

class _ExampleState extends State<Example> {
 Country? _country;

 @override
 Widget build(BuildContext context) {
   return Scaffold(
     appBar: AppBar(title: Text('Demo for country picker')),
     body: Center(
       child: InkWell(
         onTap: () {
           showCountryPicker(
             context: context,
             onSelect: (Country country) {
               setState(() => _country = country);
             },
           );
         },
         child: Text(_country?.name ?? "Select a country"),
       ),
     ),
   );
 }
}

For more information please check the documentation.

from flutter_country_picker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.