Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
2022 Compose Camp : Beginner - Unit. 1
Search
dogdduddy
October 27, 2022
Programming
0
560
2022 Compose Camp : Beginner - Unit. 1
2022 Compose Camp : Beginner
CodeLab Unit. 1
Additional explanation video
with DevFest
dogdduddy
October 27, 2022
Tweet
Share
More Decks by dogdduddy
See All by dogdduddy
Computer Engineering Career Mentoring
dogdduddy
0
140
Graduation products
dogdduddy
0
39
Other Decks in Programming
See All in Programming
都市をデータで見るってこういうこと PLATEAU属性情報入門
nokonoko1203
1
340
從零到一:搭建你的第一個 Observability 平台
blueswen
1
940
AIネイティブなプロダクトをGolangで挑む取り組み
nmatsumoto4
0
110
Team topologies and the microservice architecture: a synergistic relationship
cer
PRO
0
610
プロダクト開発でも使おう 関数のオーバーロード
yoiwamoto
0
150
Claude Codeの使い方
ttnyt8701
1
120
業務自動化をJavaとSeleniumとAWS Lambdaで実現した方法
greenflagproject
1
120
Enterprise Web App. Development (2): Version Control Tool Training Ver. 5.1
knakagawa
1
110
Cline指示通りに動かない? AI小説エージェントで学ぶ指示書の書き方と自動アップデートの仕組み
kamomeashizawa
1
520
生成AIコーディングとの向き合い方、AIと共創するという考え方 / How to deal with generative AI coding and the concept of co-creating with AI
seike460
PRO
1
290
技術懸念に立ち向かい 法改正を穏便に乗り切った話
pop_cashew
0
1.4k
Javaに鉄道指向プログラミング (Railway Oriented Pro gramming) のエッセンスを取り入れる/Bringing the Essence of Railway-Oriented Programming to Java
cocet33000
2
570
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
43
2.4k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
8
660
Facilitating Awesome Meetings
lara
54
6.4k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.8k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
4
180
The Straight Up "How To Draw Better" Workshop
denniskardys
233
140k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
How GitHub (no longer) Works
holman
314
140k
Fireside Chat
paigeccino
37
3.5k
Unsuck your backbone
ammeep
671
58k
Typedesign – Prime Four
hannesfritz
42
2.7k
Transcript
This work is licensed under the Apache 2.0 License Compose
Camp Unit 1. 첫 번째 Android 앱 전병선 GDSC Daejin Core
This work is licensed under the Apache 2.0 License Unit
1. 첫 번째 Android 앱 Compose 사용 시 알아야 하는 Android 기본사항
This work is licensed under the Apache 2.0 License 재사용
가능한 소스 코드, 텍스트의 작은 부분 간단하게 코드의 일부분을 발췌한 것 스니펫
This work is licensed under the Apache 2.0 License Kotlin을
사용한 첫 프로그램 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Kotlin
코드를 컴퓨터가 이해할 수 있는 언어로 바꾸어주는 번역기 Page 4. 컴파일러 Kotlin을 사용한 첫 프로그램
This work is licensed under the Apache 2.0 License Y
= 2X + 3 Page 5. 함수 Kotlin을 사용한 첫 프로그램 X = 1, Y = 5
This work is licensed under the Apache 2.0 License Page
5. 함수 정의 Kotlin을 사용한 첫 프로그램 규격에 맞춰 함수의 기능을 코드로 작성
This work is licensed under the Apache 2.0 License Page
5. 함수 본문 Kotlin을 사용한 첫 프로그램 fun 키워 함수 이름 소괄호 중괄호
This work is licensed under the Apache 2.0 License Kotlin에서
변수 만들기 및 사용하기 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Page
2. 리터럴 Kotlin에서 변수 만들기 및 사용하기 컴퓨터에서 사용되는 고정 된 값을 대표하는 용어
This work is licensed under the Apache 2.0 License Page
2. 리터럴 Kotlin에서 변수 만들기 및 사용하기 상수 vs 리터럴 Const Literal
This work is licensed under the Apache 2.0 License Page
4. val 과 var Kotlin에서 변수 만들기 및 사용하기 변수 선언 키워드 val과 var 그리고 값의 수정 Val cannot be reassigned
This work is licensed under the Apache 2.0 License Page
4. val 과 var Kotlin에서 변수 만들기 및 사용하기 Val friendArray = 민수 병선 재민 민수 병선 규현 Jim Haary Jason Rocoli Complete Error
This work is licensed under the Apache 2.0 License Kotlin에서
함수 만들기 및 사용하기 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Page
2. 함수 호출 Kotlin에서 함수 만들기 및 사용하기 정의된 함수를 사용하기 위해 부르는 행위
This work is licensed under the Apache 2.0 License Page
5. 매개변수 Kotlin에서 함수 만들기 및 사용하기 함수를 호출할 때 값 전달 에 사용되는 변수
This work is licensed under the Apache 2.0 License 첫
번째 Android 앱 만들기 Android 스튜디오 설정
This work is licensed under the Apache 2.0 License Page
5. MainActivity.kt 첫 번째 Android 앱 만들기 Kt 확장자 Kotlin Class / File 확장자 Activity 안드로이드 화면을 구성하 는 기본 단위
This work is licensed under the Apache 2.0 License Page
5. @ Annotation 첫 번째 Android 앱 만들기 컴파일러에게 정보를 제공하거나, 실행 시 특정 코드를 생성해주는 주석
This work is licensed under the Apache 2.0 License Unit
1. 첫 번째 Android 앱 shutterstock.com - 2094254767
감사합니다. Thank you This work is licensed under the Apache
2.0 License