Open xuelink opened 5 months ago
class SplashScreen extends StatelessWidget {
const SplashScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: CircularProgressIndicator(),
),
);
}
}
now it has, but it can be improved
https://github.com/langx/langx-flutter/blob/6d54efbe45348a477bb2370a421ee3a03cd5a943/lib/main.dart#L39