feat: update index.mdx

This commit is contained in:
ChangJoo Park(박창주) 2025-05-14 19:31:00 +09:00
parent 81049c3148
commit dabd73edec
3 changed files with 21 additions and 4 deletions

View file

@ -2,6 +2,7 @@ export const sidebars = [
{ {
label: "📦 Part 1. 시작하기", label: "📦 Part 1. 시작하기",
items: [ items: [
{ label: "소개", slug: "part1/introduction" },
{ label: "개발 환경 구성", slug: "part1/setup" }, { label: "개발 환경 구성", slug: "part1/setup" },
{ label: "첫 프로젝트 생성 및 실행", slug: "part1/first-project" }, { label: "첫 프로젝트 생성 및 실행", slug: "part1/first-project" },
{ label: "Flutter 프로젝트 구조 이해", slug: "part1/project-structure" }, { label: "Flutter 프로젝트 구조 이해", slug: "part1/project-structure" },
@ -25,7 +26,10 @@ export const sidebars = [
label: "🧱 Part 3. Flutter의 기본 구성 요소", label: "🧱 Part 3. Flutter의 기본 구성 요소",
items: [ items: [
{ label: "위젯 개념과 주요 위젯", slug: "part3/widgets" }, { label: "위젯 개념과 주요 위젯", slug: "part3/widgets" },
{ label: "Stateless / Stateful 위젯 상세", slug: "part3/stateless-stateful" }, {
label: "Stateless / Stateful 위젯 상세",
slug: "part3/stateless-stateful",
},
{ label: "Widget Tree 이해", slug: "part3/widget-tree" }, { label: "Widget Tree 이해", slug: "part3/widget-tree" },
{ label: "주요 위젯", slug: "part3/basic-widgets" }, { label: "주요 위젯", slug: "part3/basic-widgets" },
{ label: "레이아웃 위젯", slug: "part3/layout-widgets" }, { label: "레이아웃 위젯", slug: "part3/layout-widgets" },

View file

@ -1,9 +1,9 @@
--- ---
title: Welcome to Starlight title: Flutter 앱 개발 가이드
description: Get started building your docs site with Starlight. description: 모바일 및 태블릿 앱을 만들며 겪었던 문제를 공유합니다.
template: splash template: splash
hero: hero:
tagline: Congrats on setting up a new Starlight project! tagline: 모바일 및 태블릿 앱을 만들며 겪었던 문제를 공유합니다.
image: image:
file: ../../assets/houston.webp file: ../../assets/houston.webp
actions: actions:

View file

@ -1,3 +1,16 @@
--- ---
title: 소개 title: 소개
--- ---
안녕하세요!
이 문서는 Flutter 프레임워크를 이용하여 앱을 개발하는 방법을 소개합니다.
저희 팀은 4개 이상의 프로젝트를 Flutter 프레임워크를 이용하여 만들었습니다.
처음부터 Flutter로 작성한 앱과 기존의 네이티브로 개발한 앱을 Flutter로 마이그레이션 한 경험이 있습니다.
iOS(+ iPadOS), Android(+ 태블릿)에서 동작하는 여러 앱 서비스를 Flutter로 만들어 운영중이며 약 100만 MAU를 가진 서비스를 안정적으로 만들어 배포하였습니다.
위 경험을 토대로 Flutter 프레임워크를 이용하여 앱 개발하면서 필요한 내용들을 본 문서에 담았습니다.
이 문서 혹은 개발과 관련된 문의는 댓글 혹은 changjoo.app@gmail.com 으로 문의바랍니다.