Skip to content

Commit 940f2d9

Browse files
committed
updated readme, bumped version to 1.0.2, removed other supported platforms from readme except ios and android
1 parent b4f981e commit 940f2d9

File tree

9 files changed

+16
-14
lines changed

9 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.2
2+
* Updated README
3+
* Removed other platforms except ios and android (since the package is not tested yet on other platforms)
4+
15
## 1.0.1
26
* Updated code docs
37
* Internal / non-public facing method names updated

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@ Flutter package for implementing infinite scroll pagination, with support for pu
2121

2222
* Flutter Android
2323
* Flutter iOS
24-
* Flutter web
25-
* Flutter desktop
2624

2725
## Installation
2826

29-
Add `gamma_smart_pagination: ^1.0.1` to your `pubspec.yaml` dependencies. And import it:
27+
Add `gamma_smart_pagination: ^1.0.2` to your `pubspec.yaml` dependencies. And import it:
3028

3129
```dart
3230
import 'package:gamma_smart_pagination/gamma_smart_pagination.dart';

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ packages:
257257
path: ".."
258258
relative: true
259259
source: path
260-
version: "1.0.1"
260+
version: "1.0.2"
261261
glob:
262262
dependency: transitive
263263
description:

ios/Flutter/Generated.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ FLUTTER_APPLICATION_PATH=/Users/zoranconevski/development/gamma-projects/gamma_s
44
COCOAPODS_PARALLEL_CODE_SIGN=true
55
FLUTTER_TARGET=lib/main.dart
66
FLUTTER_BUILD_DIR=build
7-
FLUTTER_BUILD_NAME=0.0.1
8-
FLUTTER_BUILD_NUMBER=0.0.1
7+
FLUTTER_BUILD_NAME=1.0.2
8+
FLUTTER_BUILD_NUMBER=1.0.2
99
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
1010
EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
1111
DART_OBFUSCATION=false

ios/Flutter/flutter_export_environment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export "FLUTTER_APPLICATION_PATH=/Users/zoranconevski/development/gamma-projects
55
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
66
export "FLUTTER_TARGET=lib/main.dart"
77
export "FLUTTER_BUILD_DIR=build"
8-
export "FLUTTER_BUILD_NAME=0.0.1"
9-
export "FLUTTER_BUILD_NUMBER=0.0.1"
8+
export "FLUTTER_BUILD_NAME=1.0.2"
9+
export "FLUTTER_BUILD_NUMBER=1.0.2"
1010
export "DART_OBFUSCATION=false"
1111
export "TRACK_WIDGET_CREATION=true"
1212
export "TREE_SHAKE_ICONS=false"

lib/src/controller/gamma_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class GammaController extends ChangeNotifier {
7272

7373
/// set the controller status to loadingFailed.
7474
/// Use this method when the widget failed to load more data.
75-
/// @Params: [errorMessage] is the error message that will be displayed in the footer.
75+
/// [errorMessage] is the error message that will be displayed in the footer.
7676
void setLoadingFailed({String? errorMessage}) {
7777
_status = GammaControllerStatus.loadingFailed(errorMessage: errorMessage);
7878
notifyListeners();

macos/Flutter/ephemeral/Flutter-Generated.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FLUTTER_ROOT=/Users/zoranconevski/tools/flutter
33
FLUTTER_APPLICATION_PATH=/Users/zoranconevski/development/gamma-projects/gamma_smart_pagination
44
COCOAPODS_PARALLEL_CODE_SIGN=true
55
FLUTTER_BUILD_DIR=build
6-
FLUTTER_BUILD_NAME=0.0.1
7-
FLUTTER_BUILD_NUMBER=0.0.1
6+
FLUTTER_BUILD_NAME=1.0.2
7+
FLUTTER_BUILD_NUMBER=1.0.2
88
DART_OBFUSCATION=false
99
TRACK_WIDGET_CREATION=true
1010
TREE_SHAKE_ICONS=false

macos/Flutter/ephemeral/flutter_export_environment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export "FLUTTER_ROOT=/Users/zoranconevski/tools/flutter"
44
export "FLUTTER_APPLICATION_PATH=/Users/zoranconevski/development/gamma-projects/gamma_smart_pagination"
55
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
66
export "FLUTTER_BUILD_DIR=build"
7-
export "FLUTTER_BUILD_NAME=0.0.1"
8-
export "FLUTTER_BUILD_NUMBER=0.0.1"
7+
export "FLUTTER_BUILD_NAME=1.0.2"
8+
export "FLUTTER_BUILD_NUMBER=1.0.2"
99
export "DART_OBFUSCATION=false"
1010
export "TRACK_WIDGET_CREATION=true"
1111
export "TREE_SHAKE_ICONS=false"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gamma_smart_pagination
22
description: Flutter package for infinite scrolling pagination, which supports pull down to refresh and pull up to load more.
3-
version: 1.0.1
3+
version: 1.0.2
44
repository: https://github.com/GammaTechMK/gamma_smart_pagination
55

66
environment:

0 commit comments

Comments
 (0)