분류 전체보기
-
[Flutter] 플러터 Margin마진 Padding 패딩 EdgeInsets 정리플러터 Flutter 2021. 4. 24. 17:47
dartpad.dartlang.org 위의 사이트에서 아래의 소스로 마진, 패딩 옵션을 확인 할 수 있다. # margin, padding 패딩,마진 차이는? 컨테이너의 margin : 바깥쪽 영역과 padding : 안쪽 영역이다. import 'package:flutter/material.dart'; void main() => runApp(ContainerExample()); class ContainerExample extends StatelessWidget { static const String _title = 'Container'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, debugShowCh..
-
맥 macOS 자바 jdk 설치 (open jdk)하기개발 Tip 2021. 2. 22. 13:03
1. JDK 다운 jdk.java.net/archive/ Archived OpenJDK GA Releases Archived OpenJDK General-Availability Releases This page is an archive of previously released builds of the JDK licensed under the GNU General Public License, version 2, with Classpath Exception. WARNING: These older versions of the JDK are provided to he jdk.java.net 위의 사이트에서 jdk를 다운 받는다. 나는 openjdk-14.0.1 버전을 받았다. 2. 압축 해제 및 폴더 이동 아래..
-
다트 Dart 언어란? (특징, 기초문법)플러터 Flutter 2021. 2. 20. 18:18
- 다트 Dart란? google 구글이 javascript 자바스크립트를 대체하기 위해 2011년 개발한 웹프로그래밍 언어 (https://dart.dev/) 모바일 앱, 웹 앱, 명령어 스크립트, 서버 프로그래밍 등 어떤 것이든 다트를 사용해 만들 수 있다. 웹앱이 아닌 네이티브 코드로 안드로이드나 iOS용 앱을 동시에 개발 할 수 있다. java랑 유사한 문법으로 몇가지 특징만 숙지하면 쉽게 개발 할 수 있다. - 다트 Dart의 특징 1. 모든 것들이 전부 Object 로 취급한다. Variable 안에 넣을 수 있는 것은 전부 Object. Fuction, number, null 전부 Objcet로 취급 된다. 변수에 넣을 수 있는 모든 것은 객체이며, 모든 객체는 클래스의 인스턴스로 취급. 2..
-
STS 깃허브 GitHub 연동하기이클립스 STS 2020. 12. 22. 17:18
github.com/new GitHub: Where the world builds software GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com - 깃 원격 저장소를 생성한다. - Git 메뉴를 들어간다. - Create a Git repository 클릭 - 원격 저장소 주소를 복사한다. - 로그인 정보를 입력한다. - Next 누른다. - master로 사용할 로컬 저장소 ..
-
인텔리제이 IntelliJ 깃허브 GitHub 연동하기IntelliJ 인텔리제이 2020. 12. 21. 14:34
1. 인텔리제이 버전 2020.1.3 2. git 플러그인 설치하기. 3. 인텔리제이 깃허브 토큰으로 로그인하기 4. 원격 저장소에 프로젝트 최초 커밋하기 커맨트창에서 git이 설치되있는지 확인한다. git --version 버전이 출력되면 설치된것. - 인텔리제이에 깃플러그인을 설치한다. Preferences > Plugins 클릭 Plugins > git 검색후 install - GitHub Remote Repository 생성하기 원격 저장소를 사용하기 위해 생성한다. GitHub에서 무료 원격 저장소(repository)를 제공함 https://github.com/new Repository name : 저장소 이름을 지정한다. Description : 저장소 설명을 기입한다. Public / Pr..