Last active
August 26, 2022 04:40
-
-
Save hongsw/1e329cd53cd70a4b62836af8595385d7 to your computer and use it in GitHub Desktop.
Flutter K-Toon Tutorial 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
appBar: AppBar( | |
title: const Text('Flutter K-Web Toon Tutorial 1'), | |
), | |
body: Column( | |
children: <Widget>[ | |
Image.network('https://ccdn.lezhin.com/v2/comics/260/images/wide.webp?updated=1626417228107&width=277'), | |
Text('#1 만화 : 레바툰'), | |
Text('월요일'), | |
Image.network('https://ccdn.lezhin.com/v2/comics/260/images/wide.webp?updated=1626417228107&width=277'), | |
Text('#2 만화 : 레바툰'), | |
Text('화요일'), | |
Image.network('https://ccdn.lezhin.com/v2/comics/260/images/wide.webp?updated=1626417228107&width=277'), | |
Text('#3 만화 : 레바툰'), | |
Text('수요일'), | |
] | |
) | |
) | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment