Skip to content

Commit 490a30c

Browse files
authored
Improve tab and icon sizes (#438)
1 parent 8b3560e commit 490a30c

File tree

5 files changed

+39
-38
lines changed

5 files changed

+39
-38
lines changed

lib/app.dart

+6-3
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,12 @@ class App extends StatelessWidget {
7070
paneWidth: 270,
7171
),
7272
length: items.length,
73-
tileBuilder: (context, index, selected, availableWidth) => YaruMasterTile(
74-
title: items[index].titleBuilder(context),
75-
leading: items[index].iconBuilder(context, selected),
73+
tileBuilder: (context, index, selected, availableWidth) => IconTheme(
74+
data: Theme.of(context).iconTheme.copyWith(size: 21),
75+
child: YaruMasterTile(
76+
title: items[index].titleBuilder(context),
77+
leading: items[index].iconBuilder(context, selected),
78+
),
7679
),
7780
pageBuilder: (context, index) => YaruDetailPage(
7881
body: items[index].builder(context),

lib/view/common/title_bar_tab.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ class TitleBarTab extends StatelessWidget {
1717
mainAxisSize: MainAxisSize.min,
1818
mainAxisAlignment: MainAxisAlignment.center,
1919
children: [
20-
Icon(iconData),
20+
Icon(
21+
iconData,
22+
size: 20,
23+
),
2124
const SizedBox(
2225
width: 5,
2326
),

lib/view/pages/connections/connections_page.dart

+17-20
Original file line numberDiff line numberDiff line change
@@ -43,30 +43,27 @@ class _ConnectionsPageState extends State<ConnectionsPage> {
4343
length: 3,
4444
child: Scaffold(
4545
appBar: YaruWindowTitleBar(
46-
titleSpacing: 0,
46+
titleSpacing: 20,
4747
centerTitle: true,
4848
border: BorderSide.none,
4949
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
5050
title: const SizedBox(
51-
width: 450,
52-
child: Padding(
53-
padding: EdgeInsets.only(right: 50),
54-
child: TabBar(
55-
tabs: [
56-
TitleBarTab(
57-
text: 'Wi-Fi',
58-
iconData: YaruIcons.network_wireless,
59-
),
60-
TitleBarTab(
61-
text: 'Ethernet',
62-
iconData: YaruIcons.network_wired,
63-
),
64-
TitleBarTab(
65-
iconData: YaruIcons.network_cellular,
66-
text: 'Cellular',
67-
)
68-
],
69-
),
51+
width: 400,
52+
child: TabBar(
53+
tabs: [
54+
TitleBarTab(
55+
text: 'Wi-Fi',
56+
iconData: YaruIcons.network_wireless,
57+
),
58+
TitleBarTab(
59+
text: 'Ethernet',
60+
iconData: YaruIcons.network_wired,
61+
),
62+
TitleBarTab(
63+
iconData: YaruIcons.network_cellular,
64+
text: 'Cellular',
65+
)
66+
],
7067
),
7168
),
7269
),

lib/view/pages/displays/displays_page.dart

+11-13
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,20 @@ class _DisplaysPageState extends State<DisplaysPage> {
5050
length: DisplaysPageSection.values.length,
5151
child: Scaffold(
5252
appBar: YaruWindowTitleBar(
53+
titleSpacing: 0,
5354
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
5455
border: BorderSide.none,
5556
title: SizedBox(
56-
width: 350,
57-
child: Padding(
58-
padding: const EdgeInsets.only(right: 50),
59-
child: TabBar(
60-
tabs: DisplaysPageSection.values
61-
.map(
62-
(e) => TitleBarTab(
63-
text: e.name(context),
64-
iconData: e.icon(context),
65-
),
66-
)
67-
.toList(),
68-
),
57+
width: 300,
58+
child: TabBar(
59+
tabs: DisplaysPageSection.values
60+
.map(
61+
(e) => TitleBarTab(
62+
text: e.name(context),
63+
iconData: e.icon(context),
64+
),
65+
)
66+
.toList(),
6967
),
7068
),
7169
),

lib/view/pages/privacy/privacy_page.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class PrivacyPage extends StatelessWidget {
6565
length: content.length,
6666
child: Scaffold(
6767
appBar: YaruWindowTitleBar(
68-
titleSpacing: kYaruPagePadding,
68+
titleSpacing: 0,
6969
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
7070
border: BorderSide.none,
7171
title: TabBar(

0 commit comments

Comments
 (0)