mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: improve share button text color (#3868)
This commit is contained in:
parent
5f49c1748f
commit
bc502c9c5b
@ -216,13 +216,9 @@ class DatabasePluginWidgetBuilder extends PluginWidgetBuilder {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget? get rightBarItem {
|
Widget? get rightBarItem {
|
||||||
return Row(
|
return DatabaseShareButton(
|
||||||
children: [
|
|
||||||
DatabaseShareButton(
|
|
||||||
key: ValueKey(notifier.view.id),
|
key: ValueKey(notifier.view.id),
|
||||||
view: notifier.view,
|
view: notifier.view,
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ class DatabaseShareActionListState extends State<DatabaseShareActionList> {
|
|||||||
buildChild: (controller) {
|
buildChild: (controller) {
|
||||||
return RoundedTextButton(
|
return RoundedTextButton(
|
||||||
title: LocaleKeys.shareAction_buttonText.tr(),
|
title: LocaleKeys.shareAction_buttonText.tr(),
|
||||||
textColor: Theme.of(context).colorScheme.onSurface,
|
textColor: Theme.of(context).colorScheme.onPrimary,
|
||||||
onPressed: () => controller.show(),
|
onPressed: () => controller.show(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -66,7 +66,7 @@ class DandelionColorScheme extends FlowyColorScheme {
|
|||||||
input: _white,
|
input: _white,
|
||||||
hint: _lightShader3,
|
hint: _lightShader3,
|
||||||
primary: _lightDandelionYellow,
|
primary: _lightDandelionYellow,
|
||||||
onPrimary: _white,
|
onPrimary: _lightShader1,
|
||||||
// hover color in sidebar
|
// hover color in sidebar
|
||||||
hoverBG1: _lightDandelionYellow,
|
hoverBG1: _lightDandelionYellow,
|
||||||
// tool bar hover color
|
// tool bar hover color
|
||||||
|
@ -64,7 +64,7 @@ class LavenderColorScheme extends FlowyColorScheme {
|
|||||||
input: _white,
|
input: _white,
|
||||||
hint: _lightShader3,
|
hint: _lightShader3,
|
||||||
primary: _lightMain1,
|
primary: _lightMain1,
|
||||||
onPrimary: _white,
|
onPrimary: _lightShader1,
|
||||||
hoverBG1: _lightBg2,
|
hoverBG1: _lightBg2,
|
||||||
hoverBG2: _lightHover,
|
hoverBG2: _lightHover,
|
||||||
hoverBG3: _lightShader6,
|
hoverBG3: _lightShader6,
|
||||||
|
@ -68,7 +68,7 @@ class LemonadeColorScheme extends FlowyColorScheme {
|
|||||||
input: _white,
|
input: _white,
|
||||||
hint: _lightShader3,
|
hint: _lightShader3,
|
||||||
primary: _lightDandelionYellow,
|
primary: _lightDandelionYellow,
|
||||||
onPrimary: _white,
|
onPrimary: _lightShader1,
|
||||||
// hover color in sidebar
|
// hover color in sidebar
|
||||||
hoverBG1: _lightDandelionYellow,
|
hoverBG1: _lightDandelionYellow,
|
||||||
// tool bar hover color
|
// tool bar hover color
|
||||||
|
Loading…
x
Reference in New Issue
Block a user