intro_splash_screens 0.0.2
intro_splash_screens: ^0.0.2 copied to clipboard
packages of intro splash screen.
Put a short description of the package here that helps potential users know whether this package might be useful for them.
Features #
List what your package can do. Maybe include images, gifs, or videos.
Getting started #
List prerequisites and provide or point to information on how to start using the package.
Usage #
Include short and useful examples for package users. Add longer examples
to /example folder.
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const Test(),
);
}
}
class Test extends StatefulWidget {
const Test({super.key});
@override
State<Test> createState() => _TestState();
}
class _TestState extends State<Test> {
@override
Widget build(BuildContext context) {
return const MainIntroScreen(
firstTime: 1,
secondsTime: 2,
thridTime: 4,
fourthTime: 5,
fiveTime: 7,
firstIntroChild: Center(child: Text("First Intro Logo Screen")),
introTextChild: Center(child: Text("intro Text Screen")),
introLogoChild: Center(child: Text("intro Logo Screen")),
startScreenBody: Center(child: Text("intro Start Screen")),
startButtonChild: Expanded(child: Center(child: Text("Text Button"))),
startIconButton: Icon(Icons.forward),
);
}
}
Additional information #
Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.