clean-code-dev / animated_splash_screen

The easiest way to create your animated splash screen in a fully customizable way.
MIT License
112 stars 25 forks source link

PageTransitionType is not working.... #40

Open sadik5397 opened 2 years ago

sadik5397 commented 2 years ago

@override Widget build(BuildContext context) { return AnimatedSplashScreen( splash: 'images/splash.png', nextScreen: MainScreen(), splashTransition: SplashTransition.rotationTransition, pageTransitionType: PageTransitionType.scale, //error: Undefined name 'pageTransitionType' ); }

igdmitrov commented 2 years ago

Dear @sadik5397

Try to add this in your file: import 'package:page_transition/page_transition.dart';

or install this package: flutter pub add page_transition

sadik5397 commented 2 years ago

Thanks. It works