chore: use beta.appflowy.com

This commit is contained in:
Lucas.Xu 2024-07-03 12:00:47 +08:00
parent 4ece2ff959
commit bec7227cff
2 changed files with 6 additions and 1 deletions

View File

@ -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<DocumentShareEvent, DocumentShareState> {
DocumentShareBloc({

View File

@ -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),
),
);
}