Skip to content

Commit aca22ac

Browse files
committed
Update version
1 parent 370c569 commit aca22ac

File tree

7 files changed

+82
-4
lines changed

7 files changed

+82
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 2.1.0
1+
## 3.0.0 - March 10 2023
22

33
- Support Flutter 3.7.0
4+
- Restructured package follow linter
45

56
## 2.0.2
67

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
![GitHub code size](https://img.shields.io/github/languages/code-size/chandrabezzo/CountryCodePicker)
2+
![GitHub contributors](https://img.shields.io/github/contributors/chandrabezzo/CountryCodePicker)
13
[![Pub](https://img.shields.io/pub/v/country_code_picker.svg)](https://pub.dartlang.org/packages/country_code_picker)
4+
[![Linkedin](https://i.stack.imgur.com/gVE0j.png) LinkedIn](https://www.linkedin.com/in/salvatore-giordano/)
5+
[![Linkedin](https://i.stack.imgur.com/gVE0j.png) LinkedIn](https://www.linkedin.com/in/chandra-abdul-fattah/)
26

37
# country_code_picker
48

@@ -167,3 +171,15 @@ Here is a list of properties available to customize your widget:
167171
## Contributions
168172

169173
Contributions of any kind are more than welcome! Feel free to fork and improve country_code_picker in any way you want, make a pull request, or open an issue.
174+
175+
176+
## Getting involved
177+
First of all, thank you for even considering to get involved. You are a real super :star: and we :heart: you!
178+
179+
### Reporting bugs and issues
180+
Use the configured [Github issue report template](https://github.com/imtoori/CountryCodePicker/issues/new?assignees=&labels=&template=bug_report.md&title=) when reporting an issue. Make sure to state your observations and expectations
181+
as objectively and informative as possible so that we can understand your need and be able to troubleshoot.
182+
183+
### Discussions and ideas
184+
We're happy to discuss and talk about ideas, post your
185+
question to [StackOverflow](https://stackoverflow.com/search?q=country+code+picker).

ios/Flutter/Generated.xcconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// This is a generated file; do not edit or check into version control.
2+
FLUTTER_ROOT=/Users/bezzo/flutter
3+
FLUTTER_APPLICATION_PATH=/Users/bezzo/Desktop/CountryCodePicker
4+
COCOAPODS_PARALLEL_CODE_SIGN=true
5+
FLUTTER_TARGET=lib/main.dart
6+
FLUTTER_BUILD_DIR=build
7+
FLUTTER_BUILD_NAME=3.0.0
8+
FLUTTER_BUILD_NUMBER=3.0.0
9+
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
10+
EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
11+
DART_OBFUSCATION=false
12+
TRACK_WIDGET_CREATION=true
13+
TREE_SHAKE_ICONS=false
14+
PACKAGE_CONFIG=.dart_tool/package_config.json
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
# This is a generated file; do not edit or check into version control.
3+
export "FLUTTER_ROOT=/Users/bezzo/flutter"
4+
export "FLUTTER_APPLICATION_PATH=/Users/bezzo/Desktop/CountryCodePicker"
5+
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6+
export "FLUTTER_TARGET=lib/main.dart"
7+
export "FLUTTER_BUILD_DIR=build"
8+
export "FLUTTER_BUILD_NAME=3.0.0"
9+
export "FLUTTER_BUILD_NUMBER=3.0.0"
10+
export "DART_OBFUSCATION=false"
11+
export "TRACK_WIDGET_CREATION=true"
12+
export "TREE_SHAKE_ICONS=false"
13+
export "PACKAGE_CONFIG=.dart_tool/package_config.json"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// Generated file. Do not edit.
3+
//
4+
5+
// clang-format off
6+
7+
#ifndef GeneratedPluginRegistrant_h
8+
#define GeneratedPluginRegistrant_h
9+
10+
#import <Flutter/Flutter.h>
11+
12+
NS_ASSUME_NONNULL_BEGIN
13+
14+
@interface GeneratedPluginRegistrant : NSObject
15+
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
16+
@end
17+
18+
NS_ASSUME_NONNULL_END
19+
#endif /* GeneratedPluginRegistrant_h */
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//
2+
// Generated file. Do not edit.
3+
//
4+
5+
// clang-format off
6+
7+
#import "GeneratedPluginRegistrant.h"
8+
9+
@implementation GeneratedPluginRegistrant
10+
11+
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
12+
}
13+
14+
@end

pubspec.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: country_code_picker
22
description: A flutter package for showing a country code selector. In addition it gives the possibility to select a list of favorites countries, as well as to search using a simple searchbox
3-
version: 2.1.0
4-
homepage: https://github.com/imtoori/CountryCodePicker
5-
repository: https://github.com/imtoori/CountryCodePicker
3+
version: 3.0.0
4+
homepage: https://github.com/chandrabezzo/CountryCodePicker
5+
repository: https://github.com/chandrabezzo/CountryCodePicker
6+
issue_tracker: https://github.com/imtoori/CountryCodePicker/issues
67

78
environment:
89
sdk: '>=2.12.0 <3.0.0'

0 commit comments

Comments
 (0)