Home > database >  Adjust Scrollbar height and width in Flutter
Adjust Scrollbar height and width in Flutter

Time:10-23

How to adjust Scrollbar height and width.

Scrollbar(
    child: ListView(
      padding: const EdgeInsets.all(15.0),
      children: [
        const Text(
          'Red Hat Installation in VirtualBox',
          style: darktext2,
        ),
        ] ), )

CodePudding user response:

You can use thickness,

Scrollbar(
  thickness: 33, //this
  child: ListView(
  • Related