본문 바로가기
728x90

개발/Flutter225

GPS 좌표 찍기 사이트 추천! 예를 들어 해당 지역이 한국인 지 확인해야하는 때가 있다, 그러면, 일단 한국에 해당하는 폴리곤을 그려서 내가 있는 GPS위치가 폴리곤 안에 있는지 확인해야한다. 대충 이렇게 한국을 그려봤다. 이 안에 좌표가 들어오면 한국인 것이다. 그것에 대한 코딩은 아래의 링크를 확인이 필요합니다. https://dev-caleb.tistory.com/330 지도에 해당 지점이 어떤 지역 안에 있는 지 판별하기 https://pub.dev/packages/maps_toolkit PolygonUtil.containsLocation - computes whether the given point lies inside the specified polygon. maps_toolkit | Dart Package Maps too.. 2023. 1. 21.
class initializer 각각의 차이점 https://stackoverflow.com/questions/64546212/is-there-a-difference-in-how-member-variables-are-initialized-in-dart/64548861#64548861 Is there a difference in how member variables are initialized in Dart? In Dart, is there a difference in assigning values right away vs in constructor like in Java? class Example { int x = 3; } vs class Example { int x; Example() { x = 3; } } ... stackoverflow.com 2023. 1. 8.
Facebook login 잇트립 외국 버전에서 google login 이랑 apple login만 구현해뒀는데 뭔가 선택지를 더 드리고 싶은 마음에 facebook login을 추가하게 되었다. https://dalgoodori.tistory.com/41 [Flutter] Facebook Login ① - 준비 소셜 로그인 구현 첫번째는 페이스북 로그인 입니다. 파이어베이스 사용여부와 상관없이 세팅방법은 똑같습니다. Meta for Developers Conversations 2022: 제1회 Meta 비즈니스 메시지 콘퍼런스 가장 인기 dalgoodori.tistory.com https://dalgoodori.tistory.com/42 [Flutter] Facebook Login ② - 구현 [Flutter] Facebook .. 2022. 12. 30.
sublist 오류 막기 import 'dart:math'; void main() { var a = [1,2,3,4,5,6]; var c = [1]; var b= a.sublist(0,2); var d= c.sublist(0,2); 다음과 같은 식은 오류가 발생한다. 왜냐? c는 2보다 작은 데 사이즈를 2크기로 잘라서 그렇다. 그렇다면, 해결해주려면 어떻게 해야할까? 이렇게 해결해 줄 수 있다! var d= c.sublist(0,min(2, 0)); 2022. 12. 30.
728x90