Skip to content

Commit 8f5298b

Browse files
committed
Bump
1 parent b94cd7c commit 8f5298b

File tree

4 files changed

+33
-29
lines changed

4 files changed

+33
-29
lines changed

example/ios/Podfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
22
- courier_flutter (0.0.1):
3-
- Courier_iOS (= 2.5.2)
3+
- Courier_iOS (= 2.7.1)
44
- Flutter
5-
- Courier_iOS (2.5.2)
5+
- Courier_iOS (2.7.1)
66
- Firebase/CoreOnly (10.16.0):
77
- FirebaseCore (= 10.16.0)
88
- Firebase/Messaging (10.16.0):
@@ -19,9 +19,9 @@ PODS:
1919
- FirebaseCoreInternal (~> 10.0)
2020
- GoogleUtilities/Environment (~> 7.8)
2121
- GoogleUtilities/Logger (~> 7.8)
22-
- FirebaseCoreInternal (10.17.0):
22+
- FirebaseCoreInternal (10.18.0):
2323
- "GoogleUtilities/NSData+zlib (~> 7.8)"
24-
- FirebaseInstallations (10.17.0):
24+
- FirebaseInstallations (10.18.0):
2525
- FirebaseCore (~> 10.0)
2626
- GoogleUtilities/Environment (~> 7.8)
2727
- GoogleUtilities/UserDefaults (~> 7.8)
@@ -101,14 +101,14 @@ EXTERNAL SOURCES:
101101
:path: ".symlinks/plugins/path_provider_foundation/darwin"
102102

103103
SPEC CHECKSUMS:
104-
courier_flutter: 79f9f2598a295f2e605928a5ac29053a469c14b6
105-
Courier_iOS: ba490013a9b2a0c9fa8725c239a24f2e3b01d8b1
104+
courier_flutter: c5165dbd93b7540335e2f36ce48e5134672b1b43
105+
Courier_iOS: e8a14311b9e822a224e3cf057dd04f666ac0f3cb
106106
Firebase: 25899099b77d255a636e3579c3d9dce10ec150d5
107107
firebase_core: 68027ba03585e3efe1608e35d3ab2777a64eabe9
108108
firebase_messaging: e11ea61b449e6e39741b8a309ddab803ef1eb5cd
109109
FirebaseCore: 65a801af84cca84361ef9eac3fd868656968a53b
110-
FirebaseCoreInternal: 2cf9202e226e3f78d2bf6d56c472686b935bfb7f
111-
FirebaseInstallations: 9387bf15abfc69a714f54e54f74a251264fdb79b
110+
FirebaseCoreInternal: 8eb002e564b533bdcf1ba011f33f2b5c10e2ed4a
111+
FirebaseInstallations: e842042ec6ac1fd2e37d7706363ebe7f662afea4
112112
FirebaseMessaging: 80b4a086d20ed4fd385a702f4bfa920e14f5064d
113113
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
114114
GoogleDataTransport: 54dee9d48d14580407f8f5fbf2f496e92437a2f2

example/lib/pages/push.dart

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -122,26 +122,30 @@ class _PushPageState extends State<PushPage> {
122122
);
123123
}
124124

125-
return Padding(
126-
padding: const EdgeInsets.all(16.0),
127-
child: Center(
128-
child: Column(
129-
mainAxisAlignment: MainAxisAlignment.center,
130-
children: [
131-
_buildToken(context, 'APNS Token', _apnsToken ?? 'No APNS Token'),
132-
Container(height: 16.0),
133-
_buildToken(context, 'FCM Token', _fcmToken ?? 'No FCM Token'),
134-
Container(height: 16.0),
135-
ElevatedButton(
136-
onPressed: () => _getTokens(),
137-
child: const Text('Refresh Tokens'),
138-
),
139-
Container(height: 16.0),
140-
ElevatedButton(
141-
onPressed: () => _requestPermissions(),
142-
child: const Text('Request Permissions'),
125+
return Scrollbar(
126+
child: SingleChildScrollView(
127+
child: Padding(
128+
padding: const EdgeInsets.all(16.0),
129+
child: Center(
130+
child: Column(
131+
mainAxisAlignment: MainAxisAlignment.center,
132+
children: [
133+
_buildToken(context, 'APNS Token', _apnsToken ?? 'No APNS Token'),
134+
Container(height: 16.0),
135+
_buildToken(context, 'FCM Token', _fcmToken ?? 'No FCM Token'),
136+
Container(height: 16.0),
137+
ElevatedButton(
138+
onPressed: () => _getTokens(),
139+
child: const Text('Refresh Tokens'),
140+
),
141+
Container(height: 16.0),
142+
ElevatedButton(
143+
onPressed: () => _requestPermissions(),
144+
child: const Text('Request Permissions'),
145+
),
146+
],
143147
),
144-
],
148+
),
145149
),
146150
),
147151
);

ios/courier_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A new Flutter plugin project.
1616
s.source = { :path => '.' }
1717
s.source_files = 'Classes/**/*'
1818
s.dependency 'Flutter'
19-
s.dependency 'Courier_iOS', '2.5.2'
19+
s.dependency 'Courier_iOS', '2.7.1'
2020
s.platform = :ios, '13.0'
2121

2222
# Flutter.framework does not contain a i386 slice.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: courier_flutter
22
description: The best way to add push notifications to your Flutter app!
3-
version: 2.0.0
3+
version: 2.0.1
44
homepage: https://courier.com
55

66
environment:

0 commit comments

Comments
 (0)