scrollbar

· Flutter/Tips
Scrollbar 에 색상을 넣는 방법은 ScrollbarThemeData 를 이용하는 방법이 있다. Widget build(BuildContext context) { return MaterialApp.router( title: 'Flutter Demo', debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, scrollbarTheme: ScrollbarThemeData( thumbColor: MaterialStateProperty.all(Colors.blue), trackColor: MaterialStateProperty.all(Colors.green), thumbVisibility: MaterialStatePr..
The Scrollbar's ScrollController has no ScrollPosition attached. ListView 에 ScrollBar 를 표시하고 싶어서 아래와 같은 구조로 구현하였을 때 위와 같은 에러가 발생하였다 ScrollBar 위젯이 ListView 의 스크롤 포지션 정보를 가져올 수 없어서 발생하는 에러인 것 같다. 해결법은 ListView 와 ScrollBar 의 'controller' 에 동일한 ScrollController 를 지정해주면 해결된다
상빼
'scrollbar' 태그의 글 목록