-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathaccordion.dart
More file actions
181 lines (178 loc) · 7.23 KB
/
Copy pathaccordion.dart
File metadata and controls
181 lines (178 loc) · 7.23 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import 'package:flutter/material.dart';
import 'package:gf_web/screens/layout/layout.dart';
import 'package:gf_web/styles/styles.dart';
import 'package:getwidget/getwidget.dart';
class Accordion extends StatefulWidget {
@override
_AccordionState createState() => _AccordionState();
}
class _AccordionState extends State<Accordion> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Layout(
demoImageUrl: 'lib/assets/gif/accordion.gif',
body: ListView(
children: <Widget>[
Text(
'Accordion',
style: hintStyleTextblackbolder(),
),
SizedBox(
height: 20,
),
Text(
'Tapping a GF Accordion expands or collapses the view of its children. GFAccordion is used to collapse and expand the content to view the messages or the description of the given title..',
style: hintStyleTextblackdull(),
),
SizedBox(
height: 30,
),
Padding(
padding: EdgeInsets.only(left: 15, top: 30),
child: GFTypography(
child: Text(
'Basic Accordion',
style: TextStyle(
fontSize: 20.0,
color: Colors.black,
fontWeight: FontWeight.w600,
),
),
type: GFTypographyType.typo5,
dividerWidth: 45,
dividerColor: Color(0xFF19CA4B), text: '',
),
),
SizedBox(
height: 10,
),
GFAccordion(
titleBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
contentBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
title: 'GF Accordion',
content:
'GetWidget is an open source library that comes with pre-build 1000+ UI components.'
' The library is built to make flutter development faster and more enjoyable.'),
const Padding(
padding: EdgeInsets.only(left: 15, top: 30),
child: GFTypography(
child: Text(
'Accordion With Text ',
style: TextStyle(
fontSize: 20.0,
color: Colors.black,
fontWeight: FontWeight.w600,
),
),
type: GFTypographyType.typo5,
dividerWidth: 45,
dividerColor: Color(0xFF19CA4B), text: '',
),
),
SizedBox(
height: 10,
),
GFAccordion(
titleBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
contentBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
title: 'GF Accordion',
content:
'GetWidget is an open source library that comes with pre-build 1000+ UI components.'
' The library is built to make flutter development faster and more enjoyable.',
collapsedIcon: const Text('Show'),
expandedIcon: Text(
'Hide',
style: TextStyle(color: Colors.red),
)),
const Padding(
padding: EdgeInsets.only(left: 15, top: 30),
child: GFTypography(
child: Text(
'Accordion With Icon ',
style: TextStyle(
fontSize: 20.0,
color: Colors.black,
fontWeight: FontWeight.w600,
),
),
type: GFTypographyType.typo5,
dividerWidth: 45,
dividerColor: Color(0xFF19CA4B), text: '',
),
),
SizedBox(
height: 10,
),
GFAccordion(
titleBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
contentBorder: Border(
top: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
bottom: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
left: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
right: BorderSide(
color: Colors.black.withOpacity(0.2), width: 0.5),
),
title: 'GF Accordion',
content:
'GetWidget is an open source library that comes with pre-build 1000+ UI components.'
' The library is built to make flutter development faster and more enjoyable.',
collapsedIcon: Icon(Icons.add_circle_outline),
expandedIcon: Icon(
Icons.remove_circle_outline,
color: Colors.red,
)),
],
),
),
);
}
}