알린홈마의 코드친구들
article thumbnail
Flutter 간단한 로그인 페이지 구현 (Firebase x)
Flutter 2022. 5. 18. 10:59

import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp( title: 'study', color: Colors.grey, home: loginPage(), ); } } class loginPage extends StatefulWidget { const loginPage({Key? key}) : super(key: key); @override State..

profile on loading

Loading...