일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스마트폰 배경화면
- 안드로이드 개발 강좌
- 인기있는 블로그 만들기
- 스카이 안드로이드폰 시리우스 K양 동영상
- objective-c
- 아이폰 바탕화면
- SKY 시리우스
- 안드로이드 개발 2.0 강좌
- MapView
- 아이폰 배경화면
- 안드로이드개발
- 안드로이드 2.0 개발
- 안드로이드 바탕화면
- android
- 안드로이드 개발
- 스카이 안드로이드폰 시리우스
- 안드로이드 배경화면
- 영어
- Form Stuff
- 구글안드로이드
- 하루한마디영어
- 안드로이드2.0
- 안드로이드 개발 2.0
- 구글 안드로이드
- 안드로이드폰
- 구글 안드로이드 개발
- 안드로이드2.0개발
- 안드로이드
- sky 시리우스폰
- 하루 한마디 영어
- Today
- Total
목록TIS_2023/Flutter주말반1기 (22)
moozi
https://pooney.tistory.com/28 Spring @DateTimeFormat 프론트에서 날짜를 Controller에게 넘겨야 할때가 있다. 이때 날짜 형식이 text인경우가 존재하는데 이경우 타입에러가 발생한다. String 형태로 들어온 값을 Date로 변환하지 못했기 때문이다. 이떄 @D pooney.tistory.com
1. 배포용 bundle 제작시 main.dart가 'lib/' 밑에 위치해야 함 2. package명 변경시 배포용 bundle 제작후 build시 안되는 issue => bundle제작전에 백업 필요 3. 개인정보처리지침 게시 필요 4. 웹뷰로만 만들어진 앱 배포시 reject 확률 높음 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=swing2app&logNo=221623575930 앱제작 스윙투앱 . 플레이스토어 앱 출시 주의사항 앱제작 무료앱제작 스윙투앱 구글 플레이스토어 앱 출시 주의사항 - 정책 위반 사유 안녕하세요! 사용자가 ... blog.naver.com https://www.wanted.co.kr/communi..
https://pub.dev/packages/serial_communication serial_communication | Flutter Package An Android Plugin for Serial Communication which allows you to read and write the data through the available ports pub.dev https://morioh.com/p/97f261190031 not working... 테스트 해보았으나 동작하지 않아서 참고용으로 적어둡니다
server는 demo.zip에 있습니다
https://youngwonhan-family.tistory.com/entry/Flutter-has-been-blocked-by-CORS-policy-%ED%81%AC%EB%A1%AC-%EC%8B%A4%ED%96%89-%EC%8B%9C-%EB%B0%9C%EC%83%9D-%EC%98%A4%EB%A5%98-%ED%95%B4%EA%B2%B0%EB%B0%A9%EB%B2%95 Flutter - has been blocked by CORS policy, 크롬 실행 시 발생 오류 해결방법. 현상 크롬에서 Flutter 빌드 시 아래와 같은 오류가 발생했다. ════════ Exception caught by image resource service ════════════════════════════ Failed t..
https://dongram.tistory.com/12 [MyBatis] 동적 쿼리 LIKE 문 삽질 주의 [MyBatis] 동적 쿼리 생성시 삽질 주의 MyBatis로 동적 쿼리 생성시 주의 해야 할 점. MyBatis 문법은 RDBMS 별로 쿼리가 조금 씩 달라지며, 자신이 사용하는 디비에 맞지 않게 사용하면 하루종일 삽질하 dongram.tistory.com
//null safety double? a=null; a=10.05; a=null; print(a?.toInt()); // a가 null이면 null리턴. 아니면 toInt()실행 // if(a!=null) // return a.toInt(); // else // return null; double b; // non nullable a=10; b=a!; // nullable to non nullable print(b); double c; a=7; c=a??100; //a가 null이면 100을 대입. 아니면 a값을 대입 print(c);
http://naver.me/Gguvfe6z
https://drive.google.com/file/d/1mfKKLSArzzLAxfncaoDB39vWYTgUVX-e/view?usp=sharing kakaomap_test.zip drive.google.com
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'dart:async'; class HomeScreen extends StatefulWidget { const HomeScreen({Key? key}) : super(key: key); @override State createState() => _HomeScreenState(); } // ❷ State 정의 class _HomeScreenState extends State { final PageController pageController = PageController(); @override void initState() { super.initStat..
https://drive.google.com/file/d/1zfxBmS5v7ef2Kw_DgTYbAtAbnKVNGp6t/view?usp=sharing
- Dart Dev https://dart.dev/ Dart programming language Dart is a client-optimized language for fast apps on any platform dart.dev - Dart Korea Dev https://dart-ko.dev/ Dart 프로그래밍 언어 Dart는 모든 플랫폼에서 빠른 앱을 개발하기 위해 클라이언트에 최적화된 언어입니다 dart-ko.dev - Flutter Dev https://flutter.dev/ Flutter - Build apps for any screen Flutter transforms the entire app development process. Build, test, and deploy beautif..