langx / langx-flutter

Here is the Flutter-based version of the LangX application, originally developed using the Ionic Angular framework.
BSD 3-Clause "New" or "Revised" License
6 stars 2 forks source link

Implement Splash Screen #25

Open xuelink opened 2 months ago

xuelink commented 2 months ago
            // TODO: Implement Splash Screen

https://github.com/langx/langx-flutter/blob/6d54efbe45348a477bb2370a421ee3a03cd5a943/lib/main.dart#L39

xuelink commented 2 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