728x90 Flutter79 flutter secure storage flutter를 사용하다가, id /pw, 중요 token 등을 저장할 때 사용하는 Library이다. https://pub.dev/packages/flutter_secure_storage flutter_secure_storage | Flutter Package Flutter Secure Storage provides API to store data in secure storage. Keychain is used in iOS, KeyStore based solution is used in Android. pub.dev 2023. 5. 5. drag할 때 keyboard 가리기 SingleChildScrollView안에 이런 기능이 있었다니.. ListView안에도 있을 것 같은 기능이다. 이때까지 GetstureDetector 같은 걸로 없애줬는데, UX를 위해서 꽤나 유용한 기능인 것 같다. 2023. 4. 27. Flutter Named Constructor, Factory Constructor Flutter에서, 기본적으로 사용하는 Constructor말고, 이름을 지정해서 사용하는 constructor를 NamedContructor라고 한다. class Point { double x, y; Point(this.x, this.y); Point.origin() { x = 0; y = 0; } } void main() { var point1 = Point(2, 3); // 기본 생성자로 객체 생성 var point2 = Point.origin(); // Named Constructor로 객체 생성 print('point1: (${point1.x}, ${point1.y})'); // 출력: point1: (2.0, 3.0) print('point2: (${point2.x}, ${point2.y})'.. 2023. 4. 25. flutter 축하하는 화면 (Confetti example) Confetti는 색종이 조각이라는 뜻이다. flutter에 색종이 조각이 막 날리는 화면 library가 있다 https://pub.dev/packages/confetti confetti | Flutter Package Blast colorful confetti all over the screen. Celebrate in app achievements with style. Control the velocity, angle, gravity and amount of confetti. pub.dev https://www.youtube.com/watch?v=dGMVyUY4-6M 꽤 괜찮은 것을 볼 수 있다. 이걸 설정값을 바꿔보자~ 관련 예제 코드는 아래와 같다 class MyConfetti extends S.. 2023. 4. 21. 이전 1 ··· 3 4 5 6 7 8 9 ··· 20 다음 728x90