scrollbar method
Widget
scrollbar({
- Key? key,
- ScrollController? controller,
- bool? thumbVisibility,
- bool? trackVisibility,
- double? thickness,
- Radius? radius,
- bool notificationPredicate()?,
- bool? interactive,
- ScrollbarOrientation? scrollbarOrientation,
滚动条
Implementation
Widget scrollbar({
Key? key,
ScrollController? controller,
bool? thumbVisibility,
bool? trackVisibility,
double? thickness,
Radius? radius,
bool Function(ScrollNotification)? notificationPredicate,
bool? interactive,
ScrollbarOrientation? scrollbarOrientation,
}) =>
Scrollbar(
key: key,
controller: controller,
thumbVisibility: thumbVisibility,
trackVisibility: trackVisibility,
thickness: thickness,
radius: radius,
notificationPredicate: notificationPredicate,
interactive: interactive,
scrollbarOrientation: scrollbarOrientation,
child: this,
);