dart1 [Flutter] 외부 Font 추가 및 변경 정리 "Google Font 이용" [Flutter] import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Welcome to Flutter', home: Scaffold( appBar: AppBar( title: Text('Welcome to Flutter'), ), body: Center( child: Text('Hello World', style: TextStyle(fontSize: 30)), ), ), ); } } [Flutter] 강좌 01 : Hello W.. 2020. 9. 27. 이전 1 다음