Skip to content

Commit

Permalink
Fixes ui bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ZainNaqvi committed Jul 30, 2022
1 parent 1bf33d7 commit 9c0d89d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/ui/add_task_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,10 @@ class _AddTaskBarState extends State<AddTaskBar> {
actions: [
IconButton(
onPressed: () {},
icon: Icon(Icons.person),
icon: Icon(
Icons.person,
color: Get.isDarkMode ? Colors.white : Colors.grey,
),
),
],
);
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/widgets/text_field_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MyTextField extends StatelessWidget {
SizedBox(height: 6.h),
Container(
padding: EdgeInsets.only(left: 14.w, right: 14.w),
height: 42.h,

decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12.r),
border: Border.all(
Expand Down

0 comments on commit 9c0d89d

Please sign in to comment.