mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
Merge pull request #1041 from ChiragKr04/fix/set-icon-theme-for-setting-add-icon
fix: Icon theme on setting and new column icon
This commit is contained in:
commit
988e8db798
@ -186,7 +186,10 @@ class CreateFieldButton extends StatelessWidget {
|
||||
),
|
||||
hoverColor: theme.shader6,
|
||||
onTap: () {},
|
||||
leftIcon: svgWidget("home/add"),
|
||||
leftIcon: svgWidget(
|
||||
"home/add",
|
||||
color: theme.iconColor,
|
||||
),
|
||||
),
|
||||
popupBuilder: (BuildContext popover) {
|
||||
return OverlayContainer(
|
||||
|
@ -59,8 +59,10 @@ class _SettingButton extends StatelessWidget {
|
||||
child: FlowyIconButton(
|
||||
width: 22,
|
||||
hoverColor: theme.hover,
|
||||
icon: svgWidget("grid/setting/setting")
|
||||
.padding(horizontal: 3, vertical: 3),
|
||||
icon: svgWidget(
|
||||
"grid/setting/setting",
|
||||
color: theme.iconColor,
|
||||
).padding(horizontal: 3, vertical: 3),
|
||||
),
|
||||
popupBuilder: (BuildContext context) {
|
||||
return _GridSettingListPopover(settingContext: settingContext);
|
||||
|
Loading…
Reference in New Issue
Block a user