Skip to content

Commit 988e8db

Browse files
authored
Merge pull request #1041 from ChiragKr04/fix/set-icon-theme-for-setting-add-icon
fix: Icon theme on setting and new column icon
2 parents 84a7167 + 1e2017c commit 988e8db

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/grid_header.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ class CreateFieldButton extends StatelessWidget {
186186
),
187187
hoverColor: theme.shader6,
188188
onTap: () {},
189-
leftIcon: svgWidget("home/add"),
189+
leftIcon: svgWidget(
190+
"home/add",
191+
color: theme.iconColor,
192+
),
190193
),
191194
popupBuilder: (BuildContext popover) {
192195
return OverlayContainer(

frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_toolbar.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,10 @@ class _SettingButton extends StatelessWidget {
5959
child: FlowyIconButton(
6060
width: 22,
6161
hoverColor: theme.hover,
62-
icon: svgWidget("grid/setting/setting")
63-
.padding(horizontal: 3, vertical: 3),
62+
icon: svgWidget(
63+
"grid/setting/setting",
64+
color: theme.iconColor,
65+
).padding(horizontal: 3, vertical: 3),
6466
),
6567
popupBuilder: (BuildContext context) {
6668
return _GridSettingListPopover(settingContext: settingContext);

0 commit comments

Comments
 (0)