In this tutorial i will show you to create you simple slider in flutter. Flutter has many inbuilt widgets to create beautiful UI and manage them with state and stateless widgets. There is many packages to create the sliders in flutter application but today here i am going to share…
Tag: scroll
Dart
How to create a scroll like tiktok in flutter ?
Flutter such a great framework to develop the mobile application using flutter we can create any type of complex using with ease. In this tutorial i will show you how can we make a UI like tiktok, Reels, moj like scroll in flutter. We will use PageView to create the…
Dart
How to create a scroll view in flutter ?
Flutter provides multiple way to scroll the view and one of the most efficient way is ListView.builder. Using the ListView class we can configure multiple options. Using these widgets we can create horizontal as well vertical scroll. ListView GridView CustomScrollView DraggableScrollableSheet NestedScrollView PageView SingleChildScrollView Here are the few scroll widgets…