-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathnest_selector.dart
88 lines (78 loc) · 2.16 KB
/
nest_selector.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
///
/// Created by NieBin on 18-12-5
/// Github: https://github.com/nb312
/// Email: niebin312@gmail.com
///
import "package:flutter/material.dart";
import 'view_selector.dart';
const _DIRECTION_TITTLE = "Parent Scroll Direction";
const _DIRECTION_VALUES = ["Vertical", "Horizontal"];
const _PARENT_TITLE = "Parent List Count";
const _PARENT_VALUES = ["2", "4", "6", "8", "10"];
const _CHILD_TITLE = "Clild List Count";
const _CHILD_VALUES = ["10", "20", "30", "40", "50"];
class NestSelector extends StatefulWidget {
NestSelector(
{Key key,
this.clickParent,
this.clickChild,
this.clickDirection,
this.mainColor = Colors.white})
: super(key: key);
final ValueChanged<int> clickParent;
final ValueChanged<int> clickChild;
final ValueChanged<Axis> clickDirection;
final Color mainColor;
@override
_NestState createState() => _NestState();
}
class _NestState extends State<NestSelector> {
void _clickParent(pos) {
widget.clickParent((pos + 1) * 2);
}
void _clickChild(pos) {
widget.clickChild((pos + 1) * 10);
}
void _clickDirection(pos) {
widget.clickDirection(pos == 0 ? Axis.vertical : Axis.horizontal);
}
@override
Widget build(BuildContext context) {
return Column(
children: <Widget>[
Row(children: <Widget>[
Expanded(
child: ViewSelector(
title: _DIRECTION_TITTLE,
values: _DIRECTION_VALUES,
mainColor: widget.mainColor,
onClick: _clickDirection,
),
),
]),
Row(
children: <Widget>[
Expanded(
flex: 1,
child: ViewSelector(
title: _PARENT_TITLE,
values: _PARENT_VALUES,
mainColor: widget.mainColor,
onClick: _clickParent,
),
),
Expanded(
flex: 1,
child: ViewSelector(
title: _CHILD_TITLE,
values: _CHILD_VALUES,
mainColor: widget.mainColor,
onClick: _clickChild,
),
),
],
),
],
);
}
}