목록분류 전체보기 (388)
나의 발자취

// ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( backgroundColor: Colors.white, foregroundColor: Colors.black, elevation: ..

실습: Padding 위젯 실습: Container 위젯 컨테이너에 색상 넣기 // ignore_for_file: prefer_const_constructors import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( // properties backgroundColor: Color.fromARGB(255, 30, 111, 233), title: ..

스나이퍼팩토리 Flutter 2회차 오늘은 2회차이지만,(2회차부터 10회차 마지막까지는 온라인으로 진행된다) 본격적으로 환경설정을 마친 후 첫번째 세션이다. Cmd + . 을 눌러 편하게 위젯으로 감싸기 (SafeArea)

change color set default similator to iOS -> 그냥 계속 실행해보니까 되었음 change color and press Shift + Command + F5 to restart // Dart // Copyright 2018 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidg..

세로인걸 가로로 회전시킬 때, 아래의 경우 pinning을 해서 회전하면 아이템들이 영역 밖으로 벗어나게 된다. 이럴 때는 세 부분으로 컨테이너를 나누어주어서 그 컨테이너 안에서의 alignment & pinning을 해주면 된다. Embed in View를 하는 세가지 방법이 있다. 1. 수동으로 컨테이너를 추가하는 방법은 +에서 UIView라고 치면 View 객체가 나오게 된다. 그다음 컨테이너 크기를 화면에 맞게 조절하고, 컨테이너 안에 들어가야 하는 이미지 객체는 drag&drop으로, hierarchical structure으로 넣어준다. 포토샵이나 일러랑은 반대로, 우리에게 보이는 눈이 제일 아래쪽에 있다고 보면 된다. 제일 아래에 있는 레이어가 뷰컨트롤러의 제일 top으로 보여진다. 2. 아..

Background 마우스로 선택 후 constraints 설정 -> 오른쪽 attribute inspector에서 Second Item을 Superview로 변경 Auto Layout :: it's all about Alignment and Pinning

https://www.thinglink.com/card/830282735049244673 https://www.thinglink.com/card/830282735049244673 www.thinglink.com 지난 10년간 인기를 끈 언어들의 창시자들에 대한 정보 프로그래밍 언어는 어떻게 개발되는걸까..라는 질문에 찾아본 링크 중 유용한 글 https://hackernoon.com/building-your-own-programming-language-from-scratch-part-vi-loops Building Your Own Programming Language From Scratch: Part VI - Loops | HackerNoon In this part of creating your prog..