2.0 button
-
flutter - 2.0 button ElevatedButton으로 구글, 페이스북, 메일 로그인 버튼 만들기Flutter 2021. 10. 6. 02:47
1. 구글, 페이스북 이미지 파일 imges 폴더를 만든 후 해당 파일을 저장한 뒤, pubspec.yaml 파일에서 경로 설정해주기 2. 코드 import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Login app', theme: ThemeData(primarySwatch: Colors.grey), home: LogIn(), ); } } class LogI..