Fix syntax errors from literal \n characters
This commit is contained in:
@@ -102,7 +102,8 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
|
|||||||
if (state.error == null) {
|
if (state.error == null) {
|
||||||
// Success - close dialog
|
// Success - close dialog
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
}\n }
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
@@ -126,12 +127,12 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
|
|||||||
enabledBorder: OutlineInputBorder(
|
enabledBorder: OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color:\n AppTheme.accentColor.withValues(alpha: 0.5),
|
color: AppTheme.accentColor.withValues(alpha: 0.5),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
focusedBorder: OutlineInputBorder(
|
focusedBorder: OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.circular(8),
|
borderRadius: BorderRadius.circular(8),
|
||||||
borderSide:\n BorderSide(color: AppTheme.accentColor),
|
borderSide: BorderSide(color: AppTheme.accentColor),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onSubmitted: (value) {
|
onSubmitted: (value) {
|
||||||
@@ -173,7 +174,7 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
|
|||||||
height: 20,
|
height: 20,
|
||||||
child: CircularProgressIndicator(
|
child: CircularProgressIndicator(
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
valueColor:\n AlwaysStoppedAnimation<Color>(
|
valueColor: AlwaysStoppedAnimation<Color>(
|
||||||
AppTheme.accentColor,
|
AppTheme.accentColor,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user