Skip to content

Commit 7d3c08b

Browse files
committed
release/1.0.27 update dependencies
1 parent c95cc4b commit 7d3c08b

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

example/lib/pages/login_page.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class _LoginPageState extends State<LoginPage> {
145145
if (_errorMessage.isNotEmpty && _errorMessage != null) {
146146
return Text(
147147
_errorMessage,
148-
style: TextStyle(
148+
style: const TextStyle(
149149
fontSize: 13.0,
150150
color: Colors.red,
151151
height: 1.0,
@@ -215,9 +215,9 @@ class _LoginPageState extends State<LoginPage> {
215215
Widget _showSecondaryButton() {
216216
return FlatButton(
217217
child: _formMode == FormMode.LOGIN
218-
? Text('Create an account',
218+
? const Text('Create an account',
219219
style: TextStyle(fontSize: 18.0, fontWeight: FontWeight.w300))
220-
: Text('Have an account? Sign in',
220+
: const Text('Have an account? Sign in',
221221
style: TextStyle(fontSize: 18.0, fontWeight: FontWeight.w300)),
222222
onPressed: _formMode == FormMode.LOGIN
223223
? _changeFormToSignUp
@@ -236,9 +236,9 @@ class _LoginPageState extends State<LoginPage> {
236236
borderRadius: BorderRadius.circular(30.0)),
237237
color: Colors.blue,
238238
child: _formMode == FormMode.LOGIN
239-
? Text('Login',
239+
? const Text('Login',
240240
style: TextStyle(fontSize: 20.0, color: Colors.white))
241-
: Text('Create account',
241+
: const Text('Create account',
242242
style: TextStyle(fontSize: 20.0, color: Colors.white)),
243243
onPressed: _validateAndSubmit,
244244
),

pubspec.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@ environment:
77
sdk: ">=2.2.2 <3.0.0"
88

99
dependencies:
10-
http: ^0.12.0+4
10+
http: ^0.12.2
1111
flutter:
1212
sdk: flutter
1313

1414
# Networking
1515
web_socket_channel: ^1.1.0
16-
connectivity: ^0.4.6+2
16+
connectivity: ^0.4.9
1717

1818
#Database
19-
sembast: ^2.3.0
20-
xxtea: ^2.0.2
21-
shared_preferences: ^0.5.6
19+
sembast: ^2.4.7+6
20+
xxtea: ^2.0.3
21+
shared_preferences: ^0.5.8
2222

2323
# Utils
24-
path_provider: ^1.5.1
25-
uuid: ^2.0.4
26-
package_info: ^0.4.0+13
27-
devicelocale: ^0.2.1
24+
path_provider: ^1.6.11
25+
uuid: ^2.2.0
26+
package_info: ^0.4.1
27+
devicelocale: ^0.3.1
2828
meta: ^1.1.8
29-
path: ^1.6.4
29+
path: ^1.7.0
3030

3131
dev_dependencies:
3232
# Testing
3333
test: ^1.5.1
34-
mockito: ^4.1.0
34+
mockito: ^4.1.1
3535
flutter_test:
3636
sdk: flutter

0 commit comments

Comments
 (0)