Skip to content

Commit

Permalink
Completed
Browse files Browse the repository at this point in the history
  • Loading branch information
ZainNaqvi committed Jul 31, 2022
1 parent 2be78dd commit 6ac3bdc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Binary file added images/profile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions lib/ui/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class _HomePageState extends State<HomePage> {
_appTaskBar(),
// Date Picker TimeLines
_appDateBar(),
SizedBox(height: 16.h),
SizedBox(height: 22.h),
// list of the object user tasks
_showUserTasks(),
],
Expand All @@ -63,6 +63,7 @@ class _HomePageState extends State<HomePage> {
return Expanded(child: Obx(
() {
return ListView.builder(
physics: BouncingScrollPhysics(),
shrinkWrap: true,
itemCount: _taskController.taskList.length,
itemBuilder: (context, index) {
Expand Down Expand Up @@ -330,9 +331,11 @@ class _HomePageState extends State<HomePage> {
actions: [
IconButton(
onPressed: () {
// notifyHelper.scheduledNotification();
Get.snackbar("Message", "HI! 😎");
},
icon: CircleAvatar(),
icon: CircleAvatar(
backgroundImage: AssetImage("images/profile.jpg"),
),
),
],
);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ flutter:
uses-material-design: true

# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
assets:
- images/
# - images/a_dot_ham.jpeg

# An image asset can refer to one or more resolution-specific "variants", see
Expand Down

0 comments on commit 6ac3bdc

Please sign in to comment.