일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Android
- 데스크테리어
- M1
- sqflite
- GetX
- GitHub
- xcode
- error
- AppleSilicon
- 카카오
- AppBar
- listview
- 데스크셋업
- TextField
- 간단리뷰
- database
- list
- 라이언
- react
- 춘식
- wrap
- 플러터
- 내돈내산
- VSCode
- Git
- Flutter
- ios
- datetime
- swift
- visualstudiocode
- Today
- Total
목록전체 글 (65)
welcome to my blog
프로젝트명 우클릭 > asset 폴더 생성 생성한폴더(asset) 내부에 등록하고 싶은 이미지 파일 추가하기 pubspec.yaml 파일 내부에 해당 부분 주석 풀고 이미지 등록 이미지 사용 : Image.asset("asset/main.png")
클래스 선언 class Source { final String? id; final String? name; Source({required this.id, required this.name}); factory Source.fromJson(Map json) { print(json); return Source( id : json['id'], name : json['name'] ); } } class Article { final Source? source; final String? title; final String? urlToImage; final String? publishedAt; Article({required this.source, required this.title, required this.urlT..
들여쓰기 간격이 맞지 않아서 나는 오류. 줄을 잘 맞춰주자
flutter 홈페이지 > 설치파일 다운로드 > 원하는 위치로 옮김 > cmd창에서 압축풀기 cd ~/development unzip ~/Downloads/flutter_macos_2.2.3-stable.zip *development : 원하는 설치경로 입력 export PATH="$PATH:`pwd`/flutter/bin" 환경변수 설정 flutter doctor 현재 설치되어있는 항목들을 보여줌. 설치가 더 필요한 항목이 있는지 확인 할 수 있는 명령어 echo $PATH 현재 설정된 경로 확인 가능 which flutter dart dart 경로 확인 (위의 PATH와 같은 경로인지 확인 - 다르면 호환문제가 있을 수 있음) android studio 설치 (for Mac-intel) plugins..
부트스트랩(bootstrap) : 웹 사이트를 쉽게 만들 수 있게 도와주는 HTML, CSS, JS 프레임워크 설치 커맨드 : $ npm install bootstrap react 프로젝트에 적용 import { BootstrapTable, TableHeaderColumn } from 'react-bootstrap-table'; import '../../node_modules/react-bootstrap-table/css/react-bootstrap-table.css'; // 경로는 자신의 프로젝트에 맞게 설정 (node_modules 이전 경로까지 자신의 프로젝트에 맞추기) 나의 경우 상위의 상위폴더에 node_modules가 있기 때문에 ../../ 로 작성하였음 state = { columns: [..