Skip to content

Commit d2d68d8

Browse files
committed
Update README.md
1 parent 5ebc1c1 commit d2d68d8

File tree

5 files changed

+46
-5
lines changed

5 files changed

+46
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## [0.0.1] - TODO: Add release date.
2+
3+
* TODO: Describe initial release.
4+
5+
## [0.1.1] - TODO: Add release date.
6+
7+
* TODO: Fixed clean input

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ dependencies:
99
flutter:
1010
sdk: flutter
1111
flutter_verification_code_input:
12-
git:
13-
url: git://github.com/tinylife-io/flutter_verification_code_input.git
12+
git:
13+
url: git://github.com/tiny-express/flutter_verification_code_input.git
14+
version: ^0.1.1
1415
```
1516
1617
```dart
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
7+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
8+
<excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
9+
<excludeFolder url="file://$MODULE_DIR$/.idea" />
10+
<excludeFolder url="file://$MODULE_DIR$/.pub" />
11+
<excludeFolder url="file://$MODULE_DIR$/build" />
12+
</content>
13+
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
14+
<orderEntry type="sourceFolder" forTests="false" />
15+
<orderEntry type="library" name="Dart Packages" level="project" />
16+
<orderEntry type="library" name="Dart SDK" level="project" />
17+
<orderEntry type="library" name="Flutter Plugins" level="project" />
18+
</component>
19+
</module>

pubspec.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: flutter_verification_code_input
22
author: loinp <nploi1998@gmail.com>
3-
homepage: https://github.com/nploi/flutter_verification_code_input
3+
homepage: https://github.com/tiny-express/flutter_verification_code_input
44
description: A Flutter package that help you create a verification input.
55
version: 0.1.1
66

77
environment:
8-
sdk: '>=2.0.0-dev.0.0 <3.0.0'
8+
sdk: ">=2.1.0 <3.0.0"
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
1313

1414
dev_dependencies:
15-
test: ^1.3.0
15+
flutter_test:
16+
sdk: flutter
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import 'package:flutter_test/flutter_test.dart';
2+
3+
import 'package:flutter_verification_code_input/flutter_verification_code_input.dart';
4+
5+
void main() {
6+
test('adds one to input values', () {
7+
// final calculator = Calculator();
8+
// expect(calculator.addOne(2), 3);
9+
// expect(calculator.addOne(-7), -6);
10+
// expect(calculator.addOne(0), 1);
11+
// expect(() => calculator.addOne(null), throwsNoSuchMethodError);
12+
});
13+
}

0 commit comments

Comments
 (0)