mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: add const to remove flutter warnings
This commit is contained in:
parent
f94684e0b6
commit
c4ca0553a9
@ -179,7 +179,7 @@ class DocumentShareButton extends StatelessWidget {
|
||||
switch (action) {
|
||||
case ShareAction.markdown:
|
||||
context.read<DocShareBloc>().add(const DocShareEvent.shareMarkdown());
|
||||
BubbleNotification(
|
||||
const BubbleNotification(
|
||||
msgTitle: 'Exported Complete ^_^',
|
||||
msgBody: "Check in the flowy folder inside your documents directory")
|
||||
.show(context);
|
||||
|
@ -248,7 +248,7 @@ class _BubbleNotification extends State<BubbleNotification> {
|
||||
child: ListTile(
|
||||
leading: SizedBox.fromSize(
|
||||
size: const Size(40, 40),
|
||||
child: ClipOval(
|
||||
child: const ClipOval(
|
||||
child: Icon(Icons.file_copy),
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user