Skip to content

Commit e7a0d18

Browse files
committed
Renumbered scrolling detection and added testing example
1 parent 45b9c8d commit e7a0d18

14 files changed

+551
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vs/

22_testing/.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
.dart_tool/
3+
4+
.packages
5+
.pub/
6+
7+
build/
8+
ios/.generated/
9+
ios/Flutter/Generated.xcconfig
10+
ios/Runner/GeneratedPluginRegistrant.*

22_testing/.idea/libraries/Dart_SDK.xml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

22_testing/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

22_testing/.idea/workspace.xml

+36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

22_testing/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## [0.0.1] - TODO: Add release date.
2+
3+
* TODO: Describe initial release.

22_testing/LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO: Add your license here.

22_testing/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# testing
2+
3+
A new flutter package project.
4+
5+
## Getting Started
6+
7+
For help getting started with Flutter, view our online [documentation](https://flutter.io/).
8+
9+
For help on editing package code, view the [documentation](https://flutter.io/developing-packages/).

22_testing/lib/testing.dart

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library testing;
2+
3+
/// A Calculator.
4+
class Calculator {
5+
/// Returns [value] plus 1.
6+
int addOne(int value) => value + 1;
7+
}

0 commit comments

Comments
 (0)