我们在本章回中介绍的wheelChooser是一个三方包,它除了像NumberPicker一样创建数字选择功能外,它可以选择其它的组件当作被选择的对象,相当于在选择数字
功能的基础上做了扩展,它扩展了被选择内容的范围。我们将在本章回中详细介绍该组件的使用方法。
和其它的组件一样WheelChooser组件提供了相关的属性来控制自己,下面是常用的属性。
WheelChooser(
///控制滑动方向
horizontal: true,
///使用装饰可以在选择的内容上方和下方显示一条横线
selectTextStyle:TextStyle(
///单独使用和复合使用装饰
// decoration: TextDecoration.overline,
decoration: TextDecoration.combine([TextDecoration.underline,TextDecoration.overline]),
) ,
///是否循环显示
isInfinite: true,
onValueChanged: (s) => debugPrint('$s selected'),
datas: [0,1,2,3,34,5,6,7,8,9],
),
///使用工厂方法,可以创建任意的选择器
SizedBox(
height: 150,
///可以添加任意的组件,这里添加的是icon
child: WheelChooser.custom(
onValueChanged: (value) {},
isInfinite: true,
children: const [
Icon(Icons.looks_3,size: 36,),
Icon(Icons.looks_two,size: 36,),
Icon(Icons.looks_one,size: 36,),
]),
),
///使用两种工厂方法实现数字选择器
SizedBox(
///通过控制容器的大小,可以控制显示被选择内容的范围
height: 100,
child: WheelChooser.integer(
///显示内容的大小,默认48
itemSize: 50,
horizontal: true,
isInfinite: true,
onValueChanged: (value) => debugPrint('$value'),
maxValue: 3,
minValue: 0,
),
),
SizedBox(
height: 100,
child: WheelChooser.number(
isInfinite: true,
onValueChanged: (value) => debugPrint('$value'),
maxValue: 3,
minValue: 0,
),
),
///可以选择任意对象当作被选择对象,因为value是泛型
SizedBox(
height: 200,
child: WheelChooser.choices(
isInfinite: true,
onChoiceChanged: (value) {},
choices:[
WheelChoice(value: 1, title: 'one'),
WheelChoice(value: 2, title: 'tow'),
WheelChoice(value: 3, title: 'three'),
]
),
),
我们在上面的示例代码中演示了wheelChooser的基本用法,同时演示了其它工厂方法的使用方法,编译并且运行上面的程序,可以得到以下的运行效果图:
最后,我们对本章回的内容做一个全面的总结:(博客中有两个同名的文章,第一个是错误的,第二个是正确的)
看官们,与"如何修改CircleAvatar的大小"相关的内容就介绍到这里,欢迎大家在评论区交流与讨论!