Is it possible to have any widget like this in flutter

mohammad

Is there any built in widget in flutter to implement a widget like(red border in picture below) ?

which we can drag it change the value.

finger slider

CopsOnRoad

That's simply a horizontal ListView with predefined height.

SizedBox(
  height: 56, // height of ListView
  child: ListView.builder(
    scrollDirection: Axis.horizontal, // makes it scroll in horizontal direction
    itemBuilder: (_, index) {
      // build your years 
    },
  ),
)

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

In Flutter Is it possible to show the image and the video in the same widget, Are there any common widget?

Is there any similar widget or function like 'showModelBottomSheet' that pop on screen from right hand side in flutter?

Is it possible to have multi label widget ? for example like tabular column ? in Tkinter Python?

Is it possible to create an animation like this in flutter?

Is it possible to have a red squiggly line appear under words in a Tkinter text widget without using canvas? (Like for misspelled words)

Flutter design Instagram like balloons / tooltip widget

flutter - scrollable left and right (card like) widget

Flutter, TextFormField Suffix Widget position like youtube

Flutter onChanged does not get called for any widget

Flutter How to set any widget selectable

Is it possible to show widget for 3 seconds only in flutter

Is there any code inpector like sonarqube for flutter

is there any way to use a container like sliverappbar in flutter?

Is it possible to have a case within a case, like if within a if

Is it possible to have a claims authorization with an OR condition like roles?

is it possible to have multiple layers like in photoshop on imagemagick

How to have a circle shape like this in flutter?

Is it possible to Repeat Icons in flutter like ImageRepeat

Is it possible to make text in Flutter highlightable like in HTML?

Is it possible to use any kind of database in Flutter Desktop

Is it possible to have separate BuildContext for two dialogs in Flutter?

Is it Possible to have common showModalBottomSheet for multiple pages in flutter

Flutter: is it possible for platformView to have automatic size/height?

is it possible to have type arguments for FutureBuilder in flutter

What is this JSON-like syntax in Flutter's widget constructors?

How build a widget with meter with arrow like in photo provided in flutter

How can I make Widget using iterator like 'for' in Flutter?

How to make part of flutter widget behave like a stack

how can make like this widget or card list flutter

TOP Ranking

HotTag

Archive