-
Notifications
You must be signed in to change notification settings - Fork 64
/
52.flutter_jiocinema_subtitle_section.dart
225 lines (211 loc) · 7.85 KB
/
52.flutter_jiocinema_subtitle_section.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
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import 'package:flutter/material.dart';
import 'package:ig_posts/season_2/63.transperant_design_pattern.dart';
import 'package:ig_posts/utils/colors.dart';
import 'package:provider/provider.dart';
class SubtitleSectionNotifier extends ChangeNotifier {
String? selectedAudio = "English";
String? selectedSubtitle = "Off";
void setSubtitles({required String title}) {
selectedSubtitle = title;
notifyListeners();
}
void setAudio({required String title}) {
selectedAudio = title;
notifyListeners();
}
}
class FlutterSubtitleSectionView extends StatelessWidget {
const FlutterSubtitleSectionView({super.key});
@override
Widget build(BuildContext context) {
List<String> languages = [
"English",
"मराठी",
"हिंदी",
"ગુજરાતી",
"આસામી",
"অসমীয়া"
];
List<String> subtitles = ["Off", "English", "Hindi"];
SubtitleSectionNotifier subtitleSectionNotifier({required bool renderUI}) =>
Provider.of<SubtitleSectionNotifier>(context, listen: renderUI);
subtitleBlock({required String title}) {
bool isSelected =
subtitleSectionNotifier(renderUI: true).selectedSubtitle == title;
return GestureDetector(
onTap: () {
subtitleSectionNotifier(renderUI: false).setSubtitles(title: title);
Navigator.pop(context);
},
child: Padding(
padding: const EdgeInsets.all(4.0),
child: Container(
decoration: BoxDecoration(
color: isSelected
? KConstantColors.bgColor
: KConstantColors.bgColorFaint,
borderRadius: BorderRadius.circular(12)),
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
SizedBox(width: 10),
SizedBox(
width: 100,
child: Text(title,
style: KConstantTextstyles.light(fontSize: 14))),
SizedBox(width: 20),
if (isSelected)
CircleAvatar(radius: 8, child: Icon(Icons.check, size: 12))
],
),
),
),
),
);
}
audioBlock({required String title}) {
bool isSelected =
subtitleSectionNotifier(renderUI: true).selectedAudio == title;
return GestureDetector(
onTap: () {
subtitleSectionNotifier(renderUI: false).setAudio(title: title);
Navigator.pop(context);
},
child: Padding(
padding: const EdgeInsets.all(4.0),
child: Container(
decoration: BoxDecoration(
color: isSelected
? KConstantColors.bgColor
: KConstantColors.bgColorFaint,
borderRadius: BorderRadius.circular(12)),
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
SizedBox(width: 10),
SizedBox(
width: 100,
child: Text(title,
style: KConstantTextstyles.light(fontSize: 14))),
SizedBox(width: 20),
if (isSelected)
CircleAvatar(radius: 8, child: Icon(Icons.check, size: 12))
],
),
),
),
),
);
}
showSubtitleSection() {
return showModalBottomSheet(
backgroundColor: KConstantColors.bgColorFaint,
context: context,
builder: (context) {
return Container(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(height: 10),
Center(
child: Container(
width: 100,
height: 6,
decoration: BoxDecoration(
color: KConstantColors.greyColor,
borderRadius: BorderRadius.circular(12))),
),
SizedBox(height: 20),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Column(
children: [
Text("Audio",
style: KConstantTextstyles.bold(fontSize: 22)),
SizedBox(height: 20),
SizedBox(
height: 300,
width: 170,
child: ListView.builder(
scrollDirection: Axis.vertical,
itemCount: languages.length,
shrinkWrap: true,
itemBuilder: (BuildContext context, int index) {
return audioBlock(title: languages[index]);
},
),
)
],
),
Column(
children: [
Text("Subtitles",
style: KConstantTextstyles.bold(fontSize: 22)),
SizedBox(height: 20),
SizedBox(
height: 200,
width: 170,
child: ListView.builder(
scrollDirection: Axis.vertical,
itemCount: subtitles.length,
shrinkWrap: true,
itemBuilder: (BuildContext context, int index) {
return subtitleBlock(title: subtitles[index]);
},
),
)
],
),
],
),
SizedBox(height: 60),
Center(
child: Text(
"You can change audio and subtitle at any moment in the show",
style: KConstantTextstyles.light(
fontSize: 12, color: KConstantColors.greyColor)),
),
],
),
decoration: BoxDecoration(
color: KConstantColors.bgColorFaint,
borderRadius: BorderRadius.circular(12)),
);
});
}
String audio = subtitleSectionNotifier(renderUI: true).selectedAudio ??
"Please select on";
String subtitle =
subtitleSectionNotifier(renderUI: true).selectedSubtitle ??
"Please select on";
return Scaffold(
backgroundColor: KConstantColors.bgColorFaint,
appBar: CustomAppBar(title: "JioCinema Subtitle Section"),
body: Column(
children: [
Align(
alignment: Alignment.centerRight,
child: IconButton(
icon: Icon(Icons.subtitles, color: Colors.pink),
onPressed: () {
showSubtitleSection();
}),
),
SizedBox(height: 100),
Text("Selected Audio : ${audio}",
style: KConstantTextstyles.bold(fontSize: 20)),
SizedBox(height: 10),
Text("Selected Subtitle : ${subtitle}",
style: KConstantTextstyles.bold(fontSize: 20))
],
),
);
}
}