Skip to content

Commit

Permalink
Merge pull request #7 from youngmi-k/blog-writing
Browse files Browse the repository at this point in the history
대규모 업데이트
  • Loading branch information
youngmi-k authored Jan 9, 2025
2 parents 94c8f29 + 6afdb11 commit 7a6fe93
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 12 deletions.
14 changes: 7 additions & 7 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ minimal_mistakes_skin : "dirt" # "air", "aqua", "contrast", "dark", "dirt", "
future : true
locale : "ko-KR"
rtl : # true, false (default) # turns direction of the page into right to left for RTL languages
title : "어제보다 오늘 더 성장합니다"
title : "개발자 성장 다이어리"
title_separator : "|"
subtitle : ""
name : "강영미"
description : "안녕하세요! Flutter 앱 개발자가 되고 싶은 강영미입니다. 현재 Flutter 개발을 위한 Dart와 Kotlin을 활용한 Android 앱 개발에 대해 공부 중입니다."
subtitle : "어제보다 오늘 더 성장합니다"
name : "Satomi"
description : "안녕하세요! Flutter 앱 개발자가 되고 싶은 Satomi입니다. 현재 Flutter 개발을 위한 Dart와 Kotlin을 활용한 Android 앱 개발에 대해 공부 중입니다."
url : "https://youngmi-k.github.io"
baseurl : # the subpath of your site, e.g. "/blog"
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
Expand Down Expand Up @@ -114,9 +114,9 @@ analytics:

# Site Author
author:
name : "강영미"
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
bio : "Flutter 개발 공부를 기록하는 블로그입니다."
name : "Satomi"
avatar : "/assets/profile_image.jpg"
bio : "Flutter와 Dart를 공부하며 기록하는 블로그입니다. 잘 부탁드립니다 :)"
location : "South Korea"
email :
links:
Expand Down
7 changes: 7 additions & 0 deletions _pages/tag-archive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Tag"
layout: tags
permalink: /tags/
author_profile: true
sidebar_main: true
---
8 changes: 7 additions & 1 deletion _posts/2025-01-08-Dart_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ search: true # false로 설정하면 검색시 내용이 뜨지 않는다.



안녕하세요. 아직 닉네임을 정하지 못했지만, 저는 Flutter와 Dart언어 공부를 하면서 스스로 헷갈렸던 부분들을 잘 기록해놓고자 블로그를 시작하게 되었습니다. 앞으로 열심히 공부하고 열심히 기록하겠습니다 :)
안녕하세요, Satomi 입니다! 저는 Flutter와 Dart언어 공부를 하면서 스스로 헷갈렸던 부분들을 잘 기록해놓고자 블로그를 시작하게 되었습니다. 앞으로 열심히 공부하고 열심히 기록하겠습니다 :)



Expand All @@ -24,6 +24,8 @@ search: true # false로 설정하면 검색시 내용이 뜨지 않는다.

# 변수와 타입이란 무엇일까요?

------

**변수**란 프로그래밍을 할 때 **가장 기본이 되는 단위**로, **특정한 값(데이터)을 담아두는 그릇**이라고 이해하면 쉽습니다.

그리고 **데이터의 유형****타입**이라고 합니다.
Expand Down Expand Up @@ -58,6 +60,8 @@ Null thisIsNull = null;

# 타입은 꼭 정의 해야 할까요?

------

하지만 타입을 반드시 정의할 필요는 없습니다.

**가변형 타입****var****Dynamic**을 이용하여 타입 정의 없이 변수를 선언할 수 있습니다.
Expand Down Expand Up @@ -86,6 +90,8 @@ dynamicValue = 'is not Error?' // 변수 선언시 최초 부여된 타입과

# 상수는 어떻게 선언하나요?

------

변수는 한번 할당한 값을 여러번 수정할 수 있는 것이 특징입니다. 하지만 프로그래밍을 하다보면 특정한 상황에 할당한 값을 바꾸고 싶지 않은 경우가 있습니다. 그럴 때 변수 대신 상수를 선언하게 됩니다.

| 변수 | 상수 |
Expand Down
9 changes: 7 additions & 2 deletions _sass/minimal-mistakes/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,28 @@

html {
/* apply a natural box layout model to all elements */
/* 글씨 폰트 조정하기 */
box-sizing: border-box;
background-color: $background-color;
font-size: $doc-font-size;

/* 본문 사이즈 */
@include breakpoint($medium) {
font-size: $doc-font-size-medium;
}

/* 헤더 사이즈 */
@include breakpoint($large) {
font-size: $doc-font-size-large;
}

/* 제목 사이즈 (이 부분만 조정해도 글씨 사이즈가 조절 됨) */
@include breakpoint($x-large) {
font-size: $doc-font-size-x-large;
// 기본값: font-size: $doc-font-size-x-large;
font-size: 20px;
}

-webkit-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; /* 모바일 폰트 사이즈 조정정 */
-ms-text-size-adjust: 100%;
}

Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
}

img {
max-width: 110px;
max-width: 200px;
border-radius: 50%;

@include breakpoint($large) {
Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ $max-width: $x-large !default;
========================================================================== */

$right-sidebar-width-narrow: 200px !default;
$right-sidebar-width: 300px !default;
$right-sidebar-width: 250px !default;
$right-sidebar-width-wide: 400px !default;

/*
Expand Down
Binary file added assets/profile_image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7a6fe93

Please sign in to comment.