-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinsidelanguages.dart
194 lines (183 loc) · 6.69 KB
/
insidelanguages.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
import 'package:flutter/material.dart';
import 'package:fancy_drawer/fancy_drawer.dart';
import 'package:url_launcher/url_launcher.dart';
class Cpp extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<Cpp>
with SingleTickerProviderStateMixin {
FancyDrawerController _controller;
final items = ['1. CPlusPlus.com Tutorials', '2. LearnCPP.com Tutorials ', '3. Open Data Structure in C++'];
final subtitle = ['','','- Pat Morin'];
@override
void initState() {
super.initState();
_controller = FancyDrawerController(
vsync: this, duration: Duration(milliseconds: 200))
..addListener(() {
setState(() {});
});
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return FancyDrawerWrapper(
backgroundColor: Colors.white,
controller: _controller,
drawerItems: <Widget>[
TextButton(onPressed: () => {/*listClassClick(context)*/},//aboutusClick(context),
child: Text('About Us',
style: TextStyle(
fontSize: 18,
color: Colors.purple.shade700,
fontWeight: FontWeight.bold,
),)
),TextButton(onPressed: () => {},//contributeClick(context),
child: Text('Contribute',
style: TextStyle(
fontSize: 18,
color: Colors.purple.shade700,
fontWeight: FontWeight.bold,
),))
,
],
child: Scaffold(
appBar: AppBar(
title: new Text('C / C++ Resources',
style: TextStyle(color:Colors.white)),
backgroundColor: Colors.purple.shade700,
/*leading: IconButton(
icon: Icon(
Icons.menu,
color: Colors.white,
),
onPressed: () {
_controller.toggle();
},
),*/
),
body: ListView.builder(
itemCount: items.length,
itemBuilder: (context, index) {
return new Container(
child: new Column(children: <Widget> [
ListTile(
title: Text(items[index]),
subtitle: Text(subtitle[index]),
onTap: () {
if(index==0)launch('http://www.cplusplus.com/doc/tutorial/');
else if(index==1)launch('https://www.learncpp.com');
else if(index==2)launch('http://opendatastructures.org/ods-cpp.pdf');}
),
/*InkWell(
child: new Text('Open Link in Browser'),
onTap: () => {if(index==0)launch('http://www.cplusplus.com/doc/tutorial/')
else if(index==1)launch('https://www.learncpp.com')
else if(index==2)launch('http://opendatastructures.org/ods-cpp.pdf')}
),*/
SizedBox(height:5),
],
),
);
},
),
),
);
}
}
/////////////////////////////////////
class Python extends StatefulWidget {
@override
_PythonState createState() => _PythonState();
}
class _PythonState extends State<Python>
with SingleTickerProviderStateMixin {
FancyDrawerController _controller;
final items = ['1. Py4e.com Tutorials', '2. Automate the boring stuff with Python ', '3. Python 101'];
final subtitle = ['','','- Michael Driscoll'];
final links = ['https://py4e.com',];
@override
void initState() {
super.initState();
_controller = FancyDrawerController(
vsync: this, duration: Duration(milliseconds: 200))
..addListener(() {
setState(() {});
});
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return FancyDrawerWrapper(
backgroundColor: Colors.white,
controller: _controller,
drawerItems: <Widget>[
TextButton(onPressed: () => {/*listClassClick(context)*/},//aboutusClick(context),
child: Text('About Us',
style: TextStyle(
fontSize: 18,
color: Colors.purple.shade700,
fontWeight: FontWeight.bold,
),)
),TextButton(onPressed: () => {},//contributeClick(context),
child: Text('Contribute',
style: TextStyle(
fontSize: 18,
color: Colors.purple.shade700,
fontWeight: FontWeight.bold,
),))
,
],
child: Scaffold(
appBar: AppBar(
title: new Text('Python Resources',
style: TextStyle(color:Colors.white)),
backgroundColor: Colors.purple.shade700,
/*leading: IconButton(
icon: Icon(
Icons.menu,
color: Colors.white,
),
onPressed: () {
_controller.toggle();
},
),*/
),
body: ListView.builder(
itemCount: items.length,
itemBuilder: (context, index) {
return new Container(
child: new Column(children: <Widget> [
ListTile(
title: Text(items[index]),
subtitle: Text(subtitle[index]),
onTap: () {
if(index==0)launch(links[index]);
else if(index==1)launch('https://automatetheboringstuff.com/2e/chapter0/');
else if(index==2)launch('https://python101.pythonlibrary.org');}
),
/*InkWell(
child: new Text('Open Link in Browser'),
onTap: () => {if(index==0)launch('http://www.cplusplus.com/doc/tutorial/')
else if(index==1)launch('https://www.learncpp.com')
else if(index==2)launch('http://opendatastructures.org/ods-cpp.pdf')}
),*/
SizedBox(height:5),
],
),
);
},
),
),
);
}
}