File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -68,18 +68,29 @@ class _HeadlinesFeedViewState extends State<_HeadlinesFeedView> {
68
68
Widget build (BuildContext context) {
69
69
return Scaffold (
70
70
appBar: AppBar (
71
+ leadingWidth: 100 ,
72
+ leading: Row (
73
+ children: [
74
+ IconButton (
75
+ icon: const Icon (Icons .settings),
76
+ onPressed: () {},
77
+ ),
78
+ IconButton (
79
+ icon: const Icon (Icons .bookmark_border_outlined),
80
+ selectedIcon: const Icon (Icons .bookmark_border),
81
+ onPressed: () {},
82
+ ),
83
+ ],
84
+ ),
71
85
title: const Text ('HT' ),
86
+ centerTitle: true ,
72
87
actions: [
73
88
IconButton (
74
89
icon: const Icon (Icons .search),
75
90
onPressed: () {
76
91
context.pushNamed (Routes .searchName);
77
92
},
78
93
),
79
- IconButton (
80
- icon: const Icon (Icons .bookmark_border),
81
- onPressed: () {},
82
- ),
83
94
BlocBuilder <HeadlinesFeedBloc , HeadlinesFeedState >(
84
95
builder: (context, state) {
85
96
var isFilterApplied = false ;
Original file line number Diff line number Diff line change 1
1
name : ht_main
2
2
description : main headlines toolkit mobile app.
3
- version : 0.29 .0
3
+ version : 0.30 .0
4
4
publish_to : none
5
5
repository : https://github.com/headlines-toolkit/ht-main
6
6
environment :
You can’t perform that action at this time.
0 commit comments