분류 전체보기 (963) 썸네일형 리스트형 [TIL] 플러터 클래스로 변수값 받기, 다른 클래스로 변수 전달하기 문제상황 아래처럼 주별 날짜를 선택할 수 있는 스크롤바로 WeeklyDatePickerComponent 위젯을 만들고 이를 메인 스크린 클래스에 넣었다. 사용한 라이브러리: weekly_date_picker: ^1.3.0 Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( DateFormat('yyyy/MM/dd').format(_selectedDay ?? DateTime.now()), style: const TextStyle( fontSize: 16, ), ), WeeklyDatePickerComponent( onSelectedDayChanged: handleSelectedDayChanged, ) ], ), 위쪽 2023/07.. [TIL][Flutter] 플러터 localhost - ifconfig, json decode 문제상황 로컬 환경에서 server를 띄워놓고 flutter로 데이터를 가져오려고 아래처럼 코드를 짰다. 그런데 플러터에서는 request를 보낼 수 없다는 에러가 뜨고, server에서는 request를 받았다는 내용이 콘솔에 찍히지 않았다. class Network { final String myPickServerUrl = "http://localhost:8080"; Future getResponse(String url) async { var response = await http.get(Uri.parse('$myPickServerUrl/$url')); if (response.statusCode == 200) { return jsonDecode(utf8.decode(response.bodyBytes).. [비공개] Weekly Report - 23/07/03~23/07/09, 1107일차 보호되어 있는 글입니다. [비공개] Weekly Report - 23/06/26~23/07/02, 1100일차 보호되어 있는 글입니다. [TIL] 코틀린 gradle querydsl 설정 문제 Querydsl에서 참조로하는 Q객체를 만들려고했는데 에러가 떴다. 해결방법 build.gradle.kts 파일에 가서 다음처럼 설정한다. plugins { id("org.springframework.boot") version "3.1.0" id("io.spring.dependency-management") version "1.1.0" kotlin("jvm") version "1.8.21" kotlin("plugin.spring") version "1.8.21" kotlin("kapt") version "1.7.10" } kapt: 스프링부트에서 롬복(lombok)을 사용하면 특정 어노테이션이 달린 클래스들을 롬복이 해석하여 소스 코드를 자동으로 생성해주듯이 코틀린에서 롬복처럼 사용하는 Annota.. [Leetcode] [작성중] 11. Container With Most Water 1. 문제 You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a container, such that the container contains the most water. Return the maximum amount of water a container can store. Notice that you may not slant the container. Input: height = [1.. [TIL] 코틀린 문법 간단 요약 함수는 fun. 클래스 필요없음 변수는 var. 세미콜론 필요없음 타입은 콜론 뒤에 명시적 지정 가능. Reference Type으로만 작성. 코틀린이 타입을 추론함 상수는 val. 재할당 불가(자바 final) const val로 탑레벨 상수 지정 시 컴파일 타임에 사용 가능. main 함수 실행 전에 실행됨 const val top = 200 val num = 100 fun main() { var i : Int = 10 var name : String = "hi" var point : Double = 3.3 } String interpolation: "Hi! I'm ${name}" if문: 기본 문법은 자바와 같음. when문이 추가됨. IDE에서 Option + Enter로 변환 가능. if문의 결.. [비공개] Weekly Report - 23/06/19~23/06/25, 1093일차 보호되어 있는 글입니다. 이전 1 ··· 25 26 27 28 29 30 31 ··· 121 다음