From c113862005cf1f942edfae091d756d2ca504c938 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Fri, 13 Nov 2020 11:35:40 +0100 Subject: [PATCH] fix error label --- example/lib/advanced_options_page.dart | 7 +++---- example/pubspec.yaml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/example/lib/advanced_options_page.dart b/example/lib/advanced_options_page.dart index 59c59c26..56c9dbf0 100644 --- a/example/lib/advanced_options_page.dart +++ b/example/lib/advanced_options_page.dart @@ -104,7 +104,7 @@ class _AdvancedOptionsPageState extends State { fillColor: Color(0xffF5F5F5), filled: true, labelText: - 'Chat API Key ${_apiKeyError != null ? ': $_apiKeyError' : ''}', + 'Chat API Key ${_apiKeyError != null ? ':$_apiKeyError' : ''}', ), textInputAction: TextInputAction.next, ), @@ -149,7 +149,7 @@ class _AdvancedOptionsPageState extends State { fillColor: Color(0xffF5F5F5), filled: true, labelText: - 'User ID ${_userIdError != null ? ': $_userIdError' : ''}', + 'User ID ${_userIdError != null ? ':$_userIdError' : ''}', ), ), ), @@ -194,7 +194,7 @@ class _AdvancedOptionsPageState extends State { fillColor: Color(0xffF5F5F5), filled: true, labelText: - 'User Token ${_userTokenError != null ? ': $_userTokenError' : ''}', + 'User Token ${_userTokenError != null ? ':$_userTokenError' : ''}', ), ), ), @@ -265,7 +265,6 @@ class _AdvancedOptionsPageState extends State { ), ); - print('CREATE CLIENT'); final client = Client( apiKey, logLevel: Level.INFO, diff --git a/example/pubspec.yaml b/example/pubspec.yaml index d4da197e..85fd549e 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.0.56+58 +version: 1.0.57+59 environment: sdk: ">=2.2.2 <3.0.0"