Skip to content

Instantly share code, notes, and snippets.

View hardy716's full-sized avatar
🎯
Focusing

Hyeonho (Hardy) Shin hardy716

🎯
Focusing
View GitHub Profile
@hardy716
hardy716 / main.dart
Last active January 23, 2024 08:14
플러터챌린지 1일차 기본문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
@hardy716
hardy716 / main.dart
Last active January 23, 2024 08:26
플러터챌린지 1일차 심화문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
@hardy716
hardy716 / main.dart
Last active January 23, 2024 12:59
플러터챌린지 2일차 기본문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
@hardy716
hardy716 / main.dart
Last active January 23, 2024 11:56
플러터챌린지 2일차 심화문제 - 신현호
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
@hardy716
hardy716 / main.dart
Last active January 24, 2024 15:42
플러터챌린지 3일차 기본문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@hardy716
hardy716 / main.dart
Last active January 24, 2024 17:42
플러터챌린지 3일차 심화문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@hardy716
hardy716 / main.dart
Last active January 26, 2024 21:14
플러터챌린지 4일차 기본문제 - 신현호
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@hardy716
hardy716 / main.dart
Last active January 25, 2024 23:02
플러터챌린지 4일차 심화문제 - 신현호
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
@hardy716
hardy716 / main.dart
Created January 28, 2024 14:20
플러터챌린지 5일차 기본문제 - 신현호
import 'package:flutter/material.dart';
final spaceData = {
'NGC 162': 1862, '87 Sylvia': 1866, 'R 136a1': 1985, '28978 Ixion': 2001, 'NGC 6715': 1778,
'94400 Hongdaeyong': 2001, '6354 Vangelis': 1934, 'C/2020 F3': 2020, 'Cartwheel Galaxy': 1941, 'Sculptor Dwarf Elliptical Galaxy': 1937,
'Eight-Burst Nebula': 1835, 'Rhea': 1672, 'C/1702 H1': 1702, 'Messier 5': 1702, 'Messier 50': 1711,
'Cassiopeia A': 1680, 'Great Comet of 1680': 1680, 'Butterfly Cluster': 1654, 'Triangulum Galaxy': 1654, 'Comet of 1729': 1729,
'Omega Nebula': 1745, 'Eagle Nebula': 1745, 'Small Sagittarius Star Cloud': 1764, 'Dumbbell Nebula': 1764, '54509 YORP': 2000,
'Dia': 2000, '63145 Choemuseon': 2000,
};
@hardy716
hardy716 / main.dart
Created January 28, 2024 18:24
플러터챌린지 5일차 심화문제 - 신현호
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
debugShowCheckedModeBanner: false,
home: ShootingStarScreen(),
));
}
class ShootingStarScreen extends StatefulWidget {