mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-06-29 02:03:10 -04:00
* feat: customize animation for popover * chore: code refactor * feat: using popover direction calculate the popover animation translate direction * feat: integrate the animated popover in appflowy_popover and popover_action * fix: close popover assertion * chore: format code * chore: code refactor * feat: optimize the popover listener * feat: clear popover when hot-reloading * chore: refactor code * fix: integration test * fix: icon test
11 lines
215 B
Dart
11 lines
215 B
Dart
import 'package:scaled_app/scaled_app.dart';
|
|
|
|
import 'startup/startup.dart';
|
|
|
|
Future<void> main() async {
|
|
ScaledWidgetsFlutterBinding.ensureInitialized(
|
|
scaleFactor: (_) => 1.0,
|
|
);
|
|
|
|
await runAppFlowy();
|
|
}
|