From bec7227cff8819a64e5a0a10000411024f8e7ace Mon Sep 17 00:00:00 2001 From: "Lucas.Xu" Date: Wed, 3 Jul 2024 12:00:47 +0800 Subject: [PATCH] chore: use beta.appflowy.com --- .../plugins/document/application/document_share_bloc.dart | 2 +- .../lib/workspace/presentation/widgets/dialogs.dart | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/appflowy_flutter/lib/plugins/document/application/document_share_bloc.dart b/frontend/appflowy_flutter/lib/plugins/document/application/document_share_bloc.dart index c57a43c703..b1cc65a32a 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/application/document_share_bloc.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/application/document_share_bloc.dart @@ -14,7 +14,7 @@ import 'package:freezed_annotation/freezed_annotation.dart'; part 'document_share_bloc.freezed.dart'; // todo: replace with beta -const _url = 'https://test.appflowy.com'; +const _url = 'https://beta.appflowy.com'; class DocumentShareBloc extends Bloc { DocumentShareBloc({ diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart index 63df9f8d63..89f44fcde7 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart @@ -306,6 +306,11 @@ void showToastNotification( alignment: Alignment.bottomCenter, autoCloseDuration: const Duration(seconds: 4), showProgressBar: false, + backgroundColor: Theme.of(context).colorScheme.surface, + borderSide: BorderSide( + width: 1.5, + color: Colors.grey.withOpacity(0.4), + ), ); }