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
|
||||
Widget? get rightBarItem {
|
||||
return Row(
|
||||
children: [
|
||||
DatabaseShareButton(
|
||||
key: ValueKey(notifier.view.id),
|
||||
view: notifier.view,
|
||||
),
|
||||
],
|
||||
return DatabaseShareButton(
|
||||
key: ValueKey(notifier.view.id),
|
||||
view: notifier.view,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ class DatabaseShareActionListState extends State<DatabaseShareActionList> {
|
||||
buildChild: (controller) {
|
||||
return RoundedTextButton(
|
||||
title: LocaleKeys.shareAction_buttonText.tr(),
|
||||
textColor: Theme.of(context).colorScheme.onSurface,
|
||||
textColor: Theme.of(context).colorScheme.onPrimary,
|
||||
onPressed: () => controller.show(),
|
||||
);
|
||||
},
|
||||
|
@ -66,7 +66,7 @@ class DandelionColorScheme extends FlowyColorScheme {
|
||||
input: _white,
|
||||
hint: _lightShader3,
|
||||
primary: _lightDandelionYellow,
|
||||
onPrimary: _white,
|
||||
onPrimary: _lightShader1,
|
||||
// hover color in sidebar
|
||||
hoverBG1: _lightDandelionYellow,
|
||||
// tool bar hover color
|
||||
|
@ -64,7 +64,7 @@ class LavenderColorScheme extends FlowyColorScheme {
|
||||
input: _white,
|
||||
hint: _lightShader3,
|
||||
primary: _lightMain1,
|
||||
onPrimary: _white,
|
||||
onPrimary: _lightShader1,
|
||||
hoverBG1: _lightBg2,
|
||||
hoverBG2: _lightHover,
|
||||
hoverBG3: _lightShader6,
|
||||
|
@ -68,7 +68,7 @@ class LemonadeColorScheme extends FlowyColorScheme {
|
||||
input: _white,
|
||||
hint: _lightShader3,
|
||||
primary: _lightDandelionYellow,
|
||||
onPrimary: _white,
|
||||
onPrimary: _lightShader1,
|
||||
// hover color in sidebar
|
||||
hoverBG1: _lightDandelionYellow,
|
||||
// tool bar hover color
|
||||
|
Loading…
Reference in New Issue
Block a user