본문 바로가기
<Flutter> Animations sample 적용하기 ( AnimatedContainer ) 네, 이번 시간에는 Flutter에 존재하는 개념에 대한 공부가 아니라 Flutter 공식 문서에서 찾을 수 있는 Flutter samples에 있는 깃허브에 있는 animations를 해석하고 적용하는 과정을 포스팅하려고 합니다! 본 포스팅의 목적은 영어로 쓰여진 깃허브 자료를 해석하고 실제 적용할 수 있는 실력을 기르기 위함에 있습니다! 시간이 좀 걸리더라도 다른 자료를 보지 않고 차근 차근 진행해보도록 하겠습니다! https://docs.flutter.dev/get-started/learn-more Learn more More resources to help you learn Flutter. docs.flutter.dev Flutter samples에 가서 보면 다음과 같은 웹페이지가 로딩되고 4번.. 2023. 3. 23.
<C언어> 타입, 연산자, 제어문, 함수, 배열, 포인터 - 기본편 2 A reference is http://www.tcpschool.com/c/intro 코딩교육 티씨피스쿨 4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등 tcpschool.com Type Variable Variable is a memory space allocated by the program to store data. Namely, variable is a memory space that could store data, and the data can be chaged. Bit and Byte A computer express and process all the data as binary number. Bit is the smallest unit which i.. 2023. 3. 22.
<C언어> 역사, 탄생 배경 등 정리 -기본편 1 파이팅 해야지 (Feat. 이영지) 아티스트 부석순 (SEVENTEEN) 앨범 부석순 1st Single Album 'SECOND WIND' 발매일 2023.02.06 This poster is to study C for myself. And I post it in English for study too. Briefly, this post is dealing with basic of C language. (For example value, array, pointer etc...) Later if I recognize there is things what I miss, I'm gonna update it! Okay, Let's go. And here is a reference. http://www.tcps.. 2023. 3. 21.
<Dart> Streams 비동기 프로그래밍 결론 The dart:async library contains two types that are important for many Dart APIs: Stream and Future. Where a Future represents the result of a single computation, a stream is a sequence of results. Future은 단일 계산의 결과에 대한 사용, stream은 연속된 결과를 위해 사용됩니다!!! 네, 이번 시간에는 비동기 프로그래밍인 Strams에 대해서 알아보도록 하겠습니다. 사실 Stram은 저번에 포스팅 했던 Future과 비슷한 개념이라고 생각하시면 좋을 거 같아요. 이번 포스팅도 역시 Dart 공식 문서에 나온 내용을 바탕으로 쓰여졌습니다... 2023. 3. 16.