Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter listview how to remove scroll bar

// For not showing the scroll bar just add the Scroll configuration
// And add the behavior below
ScrollConfiguration(
      behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false),
      child: ListView(...),
),
 
PREVIOUS NEXT
Tagged: #flutter #listview #remove #scroll #bar
ADD COMMENT
Topic
Name
8+7 =