fix error label
This commit is contained in:
@@ -104,7 +104,7 @@ class _AdvancedOptionsPageState extends State<AdvancedOptionsPage> {
|
|||||||
fillColor: Color(0xffF5F5F5),
|
fillColor: Color(0xffF5F5F5),
|
||||||
filled: true,
|
filled: true,
|
||||||
labelText:
|
labelText:
|
||||||
'Chat API Key ${_apiKeyError != null ? ': $_apiKeyError' : ''}',
|
'Chat API Key ${_apiKeyError != null ? ':$_apiKeyError' : ''}',
|
||||||
),
|
),
|
||||||
textInputAction: TextInputAction.next,
|
textInputAction: TextInputAction.next,
|
||||||
),
|
),
|
||||||
@@ -149,7 +149,7 @@ class _AdvancedOptionsPageState extends State<AdvancedOptionsPage> {
|
|||||||
fillColor: Color(0xffF5F5F5),
|
fillColor: Color(0xffF5F5F5),
|
||||||
filled: true,
|
filled: true,
|
||||||
labelText:
|
labelText:
|
||||||
'User ID ${_userIdError != null ? ': $_userIdError' : ''}',
|
'User ID ${_userIdError != null ? ':$_userIdError' : ''}',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -194,7 +194,7 @@ class _AdvancedOptionsPageState extends State<AdvancedOptionsPage> {
|
|||||||
fillColor: Color(0xffF5F5F5),
|
fillColor: Color(0xffF5F5F5),
|
||||||
filled: true,
|
filled: true,
|
||||||
labelText:
|
labelText:
|
||||||
'User Token ${_userTokenError != null ? ': $_userTokenError' : ''}',
|
'User Token ${_userTokenError != null ? ':$_userTokenError' : ''}',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -265,7 +265,6 @@ class _AdvancedOptionsPageState extends State<AdvancedOptionsPage> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
print('CREATE CLIENT');
|
|
||||||
final client = Client(
|
final client = Client(
|
||||||
apiKey,
|
apiKey,
|
||||||
logLevel: Level.INFO,
|
logLevel: Level.INFO,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: example
|
name: example
|
||||||
description: A new Flutter project.
|
description: A new Flutter project.
|
||||||
version: 1.0.56+58
|
version: 1.0.57+59
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.2.2 <3.0.0"
|
sdk: ">=2.2.2 <3.0.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user