-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path011. Layout Design.kt
224 lines (208 loc) · 8.87 KB
/
011. Layout Design.kt
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
package com.example.myapplication
import android.os.Bundle
import android.widget.Space
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.layout.Arrangement.Absolute.Center
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.*
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Alignment.Companion.CenterHorizontally
import androidx.compose.ui.Alignment.Companion.CenterVertically
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Brush
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.compositeOver
import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.layout.VerticalAlignmentLine
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.example.myapplication.ui.theme.MyApplicationTheme
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MyApplicationTheme() {
// A surface container that uses the 'background' color from the theme
Surface(color = MaterialTheme.colors.background) {
ImageCard(contentDescription = "Amit", title = "Asim")
}
}
}
}
}
@Composable
fun ImageCard(contentDescription: String, title: String, modifier: Modifier = Modifier){
LazyColumn() {
item{
Card(
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
shape = RoundedCornerShape(15.dp),
elevation = 5.dp,
) {
Row(modifier = Modifier
.height(50.dp)
.wrapContentHeight(Alignment.CenterVertically)
) {
Spacer(modifier = Modifier.width(15.dp))
Image(painter = painterResource(id = R.drawable.ic_baseline_search_24 ), contentDescription = "" )
Spacer(modifier = Modifier.width(8.dp))
Text(text = "Resutarant option or a dish", color = Color.Gray, fontSize = 18.sp)
}
}
}
item{
Card(
modifier = modifier
.fillMaxWidth()
.padding(16.dp),
shape = RoundedCornerShape(15.dp),
elevation = 5.dp
) {
Column(modifier = Modifier.height(250.dp)) {
Image(
painter = painterResource(id = R.drawable.image1),
contentDescription = contentDescription,
contentScale = ContentScale.Crop,
modifier = Modifier
.fillMaxWidth(1f)
.height(150.dp)
)
Spacer(modifier = Modifier.height(10.dp))
Row(
modifier = Modifier
.fillMaxWidth()
.padding(15.dp),
horizontalArrangement = Arrangement.SpaceBetween
) {
Column() {
Text(text = "Chai Dukaan", fontWeight = FontWeight.Bold, fontSize = 20.sp)
Text(text = "Tea, Burger, Fast Food", fontSize = 18.sp)
}
Column() {
Card(
modifier = modifier
.width(70.dp)
.height(25.dp),
backgroundColor = Color(0xFF00838F).compositeOver(Color.White),
shape = RoundedCornerShape(15.dp)
) {
Text(text = "4.7 ⭐", textAlign = TextAlign.Center, color = Color.White)
}
Spacer(modifier = Modifier.height(6.dp))
Text(text = "₹200 for one", fontSize = 13.sp)
}
}
}
}
}
item { Card(
modifier = modifier
.fillMaxWidth()
.padding(16.dp),
shape = RoundedCornerShape(15.dp),
elevation = 5.dp
) {
Column(modifier = Modifier.height(250.dp)) {
Image(
painter = painterResource(id = R.drawable.image2),
contentDescription = contentDescription,
contentScale = ContentScale.Crop,
modifier = Modifier
.fillMaxWidth(1f)
.height(150.dp)
)
Spacer(modifier = Modifier.height(10.dp))
Row(
modifier = Modifier
.fillMaxWidth()
.padding(15.dp),
horizontalArrangement = Arrangement.SpaceBetween
) {
Column() {
Text(text = "Ministary of Food", fontWeight = FontWeight.Bold, fontSize = 20.sp)
Text(text = "Non veg, Bengali Recipe", fontSize = 18.sp)
}
Column() {
Card(
modifier = modifier
.width(70.dp)
.height(25.dp),
backgroundColor = Color(0xFF00838F).compositeOver(Color.White),
shape = RoundedCornerShape(15.dp)
) {
Text(text = "4.1 ⭐", textAlign = TextAlign.Center, color = Color.White)
}
Spacer(modifier = Modifier.height(6.dp))
Text(text = "₹100 for one", fontSize = 13.sp)
}
}
}
} }
item{
Card(
modifier = modifier
.fillMaxWidth()
.padding(16.dp),
shape = RoundedCornerShape(15.dp),
elevation = 5.dp
) {
Column(modifier = Modifier.height(250.dp)) {
Image(
painter = painterResource(id = R.drawable.image3),
contentDescription = contentDescription,
contentScale = ContentScale.Crop,
modifier = Modifier
.fillMaxWidth(1f)
.height(150.dp)
)
Spacer(modifier = Modifier.height(10.dp))
Row(
modifier = Modifier
.fillMaxWidth()
.padding(15.dp),
horizontalArrangement = Arrangement.SpaceBetween
) {
Column() {
Text(text = "Rim Naam - The Oberai", fontWeight = FontWeight.Bold, fontSize = 20.sp)
Text(text = "Thai, Asian, Sea Food, Desserts", fontSize = 18.sp)
}
Column() {
Card(
modifier = modifier
.width(70.dp)
.height(25.dp),
backgroundColor = Color(0xFF00838F).compositeOver(Color.White),
shape = RoundedCornerShape(15.dp)
) {
Text(text = "4.8 ⭐", textAlign = TextAlign.Center, color = Color.White)
}
Spacer(modifier = Modifier.height(6.dp))
Text(text = "₹400 for one", fontSize = 13.sp)
}
}
}
}
}
}
}