Skip to content

Instantly share code, notes, and snippets.

@hongsw
Last active August 26, 2022 04:40
Show Gist options
  • Save hongsw/1e329cd53cd70a4b62836af8595385d7 to your computer and use it in GitHub Desktop.
Save hongsw/1e329cd53cd70a4b62836af8595385d7 to your computer and use it in GitHub Desktop.
Flutter K-Toon Tutorial 1
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