Skip to content

Commit fa615ad

Browse files
committed
Error message being displayed using snackbar, flush bar removed
1 parent c02c5bb commit fa615ad

File tree

3 files changed

+59
-55
lines changed

3 files changed

+59
-55
lines changed

lib/widgets/add_Task.dart

+59-46
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// ignore_for_file: library_private_types_in_public_api, use_build_context_synchronously, file_names
22

33
import 'dart:developer';
4-
import 'package:another_flushbar/flushbar.dart';
54
import 'package:flutter/material.dart';
65
import 'package:get/get.dart';
76
import 'package:google_fonts/google_fonts.dart';
@@ -47,50 +46,53 @@ class _AddTaskBottomSheetState extends State<AddTaskBottomSheet> {
4746
@override
4847
Widget build(BuildContext context) {
4948
const title = 'Add Task';
50-
return Center(
51-
child: SingleChildScrollView(
52-
child: AlertDialog(
53-
surfaceTintColor: AppSettings.isDarkMode
54-
? TaskWarriorColors.kdialogBackGroundColor
55-
: TaskWarriorColors.kLightDialogBackGroundColor,
56-
shadowColor: AppSettings.isDarkMode
57-
? TaskWarriorColors.kdialogBackGroundColor
58-
: TaskWarriorColors.kLightDialogBackGroundColor,
59-
backgroundColor: AppSettings.isDarkMode
60-
? TaskWarriorColors.kdialogBackGroundColor
61-
: TaskWarriorColors.kLightDialogBackGroundColor,
62-
title: Center(
63-
child: Text(
64-
title,
65-
style: TextStyle(
66-
color: AppSettings.isDarkMode
67-
? TaskWarriorColors.white
68-
: TaskWarriorColors.black,
49+
return Scaffold(
50+
backgroundColor: Colors.transparent,
51+
body: Center(
52+
child: SingleChildScrollView(
53+
child: AlertDialog(
54+
surfaceTintColor: AppSettings.isDarkMode
55+
? TaskWarriorColors.kdialogBackGroundColor
56+
: TaskWarriorColors.kLightDialogBackGroundColor,
57+
shadowColor: AppSettings.isDarkMode
58+
? TaskWarriorColors.kdialogBackGroundColor
59+
: TaskWarriorColors.kLightDialogBackGroundColor,
60+
backgroundColor: AppSettings.isDarkMode
61+
? TaskWarriorColors.kdialogBackGroundColor
62+
: TaskWarriorColors.kLightDialogBackGroundColor,
63+
title: Center(
64+
child: Text(
65+
title,
66+
style: TextStyle(
67+
color: AppSettings.isDarkMode
68+
? TaskWarriorColors.white
69+
: TaskWarriorColors.black,
70+
),
6971
),
7072
),
71-
),
72-
content: Form(
73-
key: formKey,
74-
child: SizedBox(
75-
width: MediaQuery.of(context).size.width * 0.8,
76-
child: Column(
77-
mainAxisSize: MainAxisSize.min,
78-
children: <Widget>[
79-
const SizedBox(height: 8),
80-
buildName(),
81-
const SizedBox(height: 12),
82-
buildDueDate(context),
83-
const SizedBox(height: 8),
84-
buildPriority(),
85-
buildTags(),
86-
],
73+
content: Form(
74+
key: formKey,
75+
child: SizedBox(
76+
width: MediaQuery.of(context).size.width * 0.8,
77+
child: Column(
78+
mainAxisSize: MainAxisSize.min,
79+
children: <Widget>[
80+
const SizedBox(height: 8),
81+
buildName(),
82+
const SizedBox(height: 12),
83+
buildDueDate(context),
84+
const SizedBox(height: 8),
85+
buildPriority(),
86+
buildTags(),
87+
],
88+
),
8789
),
8890
),
91+
actions: <Widget>[
92+
buildCancelButton(context),
93+
buildAddButton(context),
94+
],
8995
),
90-
actions: <Widget>[
91-
buildCancelButton(context),
92-
buildAddButton(context),
93-
],
9496
),
9597
),
9698
);
@@ -307,17 +309,28 @@ class _AddTaskBottomSheetState extends State<AddTaskBottomSheet> {
307309
setState(() {
308310
inThePast = true;
309311
});
310-
//Replaced the snackBar to display message in the current context.
311-
// ignore: avoid_single_cascade_in_expression_statements
312-
Flushbar(
313-
message: 'The selected time is in the past',
314-
duration: const Duration(seconds: 3),
315-
)..show(context);
312+
313+
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
314+
content: Text(
315+
"The selected time is in the past.",
316+
style: TextStyle(
317+
color: AppSettings.isDarkMode
318+
? TaskWarriorColors.kprimaryTextColor
319+
: TaskWarriorColors.kLightPrimaryTextColor,
320+
),
321+
),
322+
backgroundColor: AppSettings.isDarkMode
323+
? TaskWarriorColors.ksecondaryBackgroundColor
324+
: TaskWarriorColors
325+
.kLightSecondaryBackgroundColor,
326+
duration: const Duration(seconds: 2)));
316327
} else {
317328
setState(() {
318329
inThePast = false;
319330
});
320331
}
332+
333+
// setState(() {});
321334
}
322335
}
323336
},

pubspec.lock

-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ packages:
1717
url: "https://pub.dev"
1818
source: hosted
1919
version: "6.2.0"
20-
another_flushbar:
21-
dependency: "direct main"
22-
description:
23-
name: another_flushbar
24-
sha256: "19bf9520230ec40b300aaf9dd2a8fefcb277b25ecd1c4838f530566965befc2a"
25-
url: "https://pub.dev"
26-
source: hosted
27-
version: "1.12.30"
2820
ansicolor:
2921
dependency: transitive
3022
description:

pubspec.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ dependencies:
5656
crypto: ^3.0.1
5757
flutter_platform_widgets: ^6.0.2
5858
file_picker: ^6.1.1
59-
another_flushbar: ^1.12.30
6059

6160
dev_dependencies:
6261
build_runner: ^2.1.11

0 commit comments

Comments
 (0)