Commit 250c8b27 authored by dio maulana's avatar dio maulana

bal

parent 60df8261
......@@ -16,7 +16,7 @@ class _MainPagesState extends State<MainPages> {
backgroundColor: Color(0xFF212121),
body: Stack(
children: [
Column(
ListView(
children: [
Align(
alignment: Alignment.center,
......@@ -39,8 +39,44 @@ class _MainPagesState extends State<MainPages> {
),
),
),
Column(
children: [Text("popular")],
Container(
margin: EdgeInsets.fromLTRB(30, 10, 10, 30),
child: Row(
children: [
Text(
"Popular",
style: TextStyle(
fontSize: 20,
color: Colors.white,
fontWeight: FontWeight.w700),
),
Spacer(),
Text(
"See More",
style: TextStyle(
fontSize: 10,
color: Colors.white24,
fontWeight: FontWeight.w500),
),
],
),
),
Align(
alignment: Alignment.centerLeft,
child: Container(
margin: EdgeInsets.fromLTRB(30, 10, 10, 30),
width: 200,
height: 300,
padding: EdgeInsets.all(3),
child: ClipRRect(
borderRadius: BorderRadius.circular(35),
child: Image(
image: NetworkImage(
"https://repository-images.githubusercontent.com/31792824/fb7e5700-6ccc-11e9-83fe-f602e1e1a9f1"),
fit: BoxFit.cover,
),
),
),
)
],
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment