-
Notifications
You must be signed in to change notification settings - Fork 0
/
Meditation_Recommendation2.dart
143 lines (136 loc) · 5.01 KB
/
Meditation_Recommendation2.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
import 'package:flutter/material.dart';
//import 'package:flutter_youtube/flutter_youtube.dart';
class Mymeditation extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
theme: ThemeData(
appBarTheme: AppBarTheme(
color: Colors.lightBlue.shade900,
),
),
home: new Scaffold(
appBar: new AppBar(
centerTitle: true,
title: new Text('명상 추천'),
),
body: new SingleChildScrollView(
child: new Column(
children: <Widget>[
Padding(padding: const EdgeInsets.fromLTRB(0, 20, 0, 0),),
Text.rich(
TextSpan(
children: <TextSpan> [
TextSpan(
text: '첫번째 명상 영상',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20)
),
TextSpan(
text: '\n[명상음악]하루10분 만병을 치료해주는 ...',
style: TextStyle(
fontSize: 17)
),
TextSpan(
text: '\n조회수 : 1192만회',
style: TextStyle(
fontSize: 17)
),
],
),
textAlign: TextAlign.center
),
SizedBox(
height: 100,
width: 200,
child: Image.asset('lib/assets/video1.png')
),
Text.rich(
TextSpan(
text: '\nhttps://www.youtube.com/watch?v=RtPwBk0pqKE',
style: TextStyle(
fontSize: 17)
),
),
Padding(padding: const EdgeInsets.fromLTRB(0, 40, 0, 0),),
Text.rich(
TextSpan(
children: <TextSpan> [
TextSpan(
text: '두번째 명상 영상',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20)
),
TextSpan(
text: '\n티벳 대형 싱잉볼 연주(극저음) 명상음악/...',
style: TextStyle(
fontSize: 17)
),
TextSpan(
text: '\n조회수 : 708만회',
style: TextStyle(
fontSize: 17)
),
],
),
textAlign: TextAlign.center
),
SizedBox(
height: 100,
width: 200,
child: Image.asset('lib/assets/video2.png')
),
Text.rich(
TextSpan(
text: '\nhttps://www.youtube.com/watch?v=2N4eTTipm9I',
style: TextStyle(
fontSize: 17)
),
),
Padding(padding: const EdgeInsets.fromLTRB(0, 40, 0, 0),),
Text.rich(
TextSpan(
children: <TextSpan> [
TextSpan(
text: '세번째 명상 영상',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20)
),
TextSpan(
text: '\n10분명상-당신의 삶에 명상이 필요할 때',
style: TextStyle(
fontSize: 17)
),
TextSpan(
text: '\n조회수 : 50만회',
style: TextStyle(
fontSize: 17)
),
],
),
textAlign: TextAlign.center
),
Padding(padding: const EdgeInsets.fromLTRB(0, 20, 0, 0),),
SizedBox(
height: 100,
width: 200,
child: Image.asset('lib/assets/video3.png')
),
Text.rich(
TextSpan(
text: '\nhttps://www.youtube.com/watch?v=yiysD0Jl2Wo',
style: TextStyle(
fontSize: 17)
),
),
Padding(padding: const EdgeInsets.fromLTRB(0, 40, 0, 0),),
],
),
),
),
);
}
}