Files
030c3eb428 Improve repo structure (#22)
* app updated

* readme updated

* rename base folder

* update chatty's readme

* move apps to packages dir

* update repo overview

Co-authored-by: diegoveloper <[email protected]>
2021-03-10 15:18:00 -04:00

45 lines
1.5 KiB
Dart

import 'package:stream_chatter/navigator_utils.dart';
import 'package:stream_chatter/ui/home/home_view.dart';
import 'package:stream_chatter/ui/profile_verify/profile_verify_view.dart';
import 'package:stream_chatter/ui/sign_in/sign_in_view.dart';
import 'package:stream_chatter/ui/common/initial_background_view.dart';
import 'package:stream_chatter/ui/splash/splash_cubit.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
class SplashView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return BlocProvider(
create: (context) => SplashCubit(context.read())..init(),
child: BlocListener<SplashCubit, SplashState>(
listener: (context, snapshot) {
if (snapshot == SplashState.none) {
pushAndReplaceToPage(context, SignInView());
} else if (snapshot == SplashState.existing_user) {
pushAndReplaceToPage(context, HomeView());
} else {
pushAndReplaceToPage(context, ProfileVerifyView());
}
},
child: Scaffold(
body: Stack(
children: [
InitialBackgroundView(),
Center(
child: Hero(
tag: 'logo_hero',
child: Image.asset(
'assets/logo.png',
height: 100,
),
),
),
],
),
),
),
);
}
}