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:
@ -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(),
|
||||
);
|
||||
},
|
||||
|
Reference in New Issue
Block a user