- 제목 : 이상한 변호사 우영우
- 표지 이미지 URL : https://my-k-toon.firebaseapp.com/images/ktoon/1-only-image.png
- 저자 : 유일 / 화음조,이예지
- 제목 : 외모지상주의
- 표지 이미지 URL : https://my-k-toon.firebaseapp.com/images/ktoon/2-only-image.png
- 저자 : 박태준
- 제목 : 여신강림
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp( | |
| const MaterialApp( | |
| home: Scaffold( | |
| body: Text("안녕! 나의 첫번째 플러터 앱") | |
| ) | |
| ) | |
| ); |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp( | |
| MaterialApp( | |
| home: Scaffold( | |
| appBar: AppBar( | |
| title: const Text("내폰내툰"), | |
| ), | |
| body: |
| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override |
| void main() { | |
| FizzBuzz f = FizzBuzz(); | |
| for (int i = 0; i < 5; i++) { | |
| print(f.myTurn()); | |
| } | |
| for (int i = 0; i < 5; i++) { | |
| print(f.myTurn()); | |
| } | |
| } |
| fizzBuzz(turn) { | |
| var str = ''; | |
| if (turn % 3 == 0 && turn % 5 == 0){ | |
| str += 'FizzBuzz'; | |
| } else if (turn % 3 == 0) { | |
| str += 'Fizz'; | |
| } else if (turn % 5 == 0) { | |
| str += 'Buzz'; | |
| } if (str.isEmpty){ | |
| str = turn.toString(); |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart' show debugPaintSizeEnabled; | |
| void main() { | |
| debugPaintSizeEnabled = false; // Set to true for visual layout | |
| runApp(const MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| const MyApp({Key? key}) : super(key: key); |
| # install minikube 1.26.0 | |
| curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 | |
| sudo install minikube-linux-amd64 /usr/local/bin/minikube | |
| # upgrade yum and install git | |
| sudo yum upgrade | |
| sudo yum install git | |
| # install golang for cri-dockered | |
| wget https://storage.googleapis.com/golang/getgo/installer_linux |
| chmod 400 new.pem | |
| ssh-keygen -y -f new.pem > new.pub | |
| cat ./new.pub | ssh -i old.pem USER@HOST "cat >> ~/.ssh/authorized_keys" | |
| # Test | |
| ssh -i new.pem USER@HOST |