class Library extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return LibraryState();
}
}
class LibraryState extends State<Library> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Color.fromRGBO(34, 40, 49, 1.0),
body: Container(
padding: EdgeInsets.only(top: 30),
child: Stack(
children: <Widget>[
Container(
child: Swiper.children(
autoplay: false,
loop: false,
pagination:
PaginationTab(titles: ['Movies', 'Series', 'Cartoons']),
children: <Widget>[
Movies(),
Series(),
Cartoons(),
],
),
)
],
)),
);
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
Swiper text navigation package.
License
luvvvdev/swiper_text_nav
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Swiper text navigation package.
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published