์น๊ณต๋ทฐ49 flutter ๊ฐค๋ฌ๋ฆฌ ๊ถํ ์ค์ ios ๊ถํ project > ios > Runner > Info.plist /*์๋ต*/ NSPhotoLibraryUsageDescription Please allow photo library permission. android ๊ถํ android > app > src > main > AndroidManifest.xml 2023. 9. 11. flutter webview ์ค์ ๋ฐ ๊ฐ๋จํ ๊ตฌํ ์น๋ทฐ๋? ์ฑ์์ ์น๋ธ๋ผ์ฐ์ ๊ธฐ๋ฅ์ ๊ตฌํํด์ฃผ๋ ๊ธฐ์ ๋ณด์ฌ์ฃผ๋ ํ๋ฉด์ ์น์ผ๋ก ๊ฐ๋ฐํด๋๊ณ ๊ฒ์ ์ฑ์ผ๋ก ๊ฐ์ธ์ ๋ฐฐํฌํจ ๋ค์ดํฐ๋ธ์ ๋นํด ์๋๊ฐ ๋๋ฆฌ๊ณ , ์ ๋๋ฉ์ด์ ์ด ๋ถ์์ฐ์ค๋ฝ๊ธด ํ์ง๋ง ๊ธฐ์กด์ ์น์ฌ์ดํธ๋ฅผ ์ฌํ์ฉํ ์ ์์. 0. ์ฌ์ ์ค์ (1) pubspec.yaml ์ค์ webview_flutter ์์กด์ฑ ์ถ๊ฐ dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 webview_flutter: 3.0.4 (2) ์๋๋ก์ด๋ ์ค์ android.. 2023. 7. 26. flutter webview ์ค์ ๋ฐ ๊ฐ๋จํ ๊ตฌํ ์น๋ทฐ๋? ์ฑ์์ ์น๋ธ๋ผ์ฐ์ ๊ธฐ๋ฅ์ ๊ตฌํํด์ฃผ๋ ๊ธฐ์ ๋ณด์ฌ์ฃผ๋ ํ๋ฉด์ ์น์ผ๋ก ๊ฐ๋ฐํด๋๊ณ ๊ฒ์ ์ฑ์ผ๋ก ๊ฐ์ธ์ ๋ฐฐํฌํจ ๋ค์ดํฐ๋ธ์ ๋นํด ์๋๊ฐ ๋๋ฆฌ๊ณ , ์ ๋๋ฉ์ด์ ์ด ๋ถ์์ฐ์ค๋ฝ๊ธด ํ์ง๋ง ๊ธฐ์กด์ ์น์ฌ์ดํธ๋ฅผ ์ฌํ์ฉํ ์ ์์. 0. ์ฌ์ ์ค์ (1) pubspec.yaml ์ค์ webview_flutter ์์กด์ฑ ์ถ๊ฐ dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 webview_flutter: 3.0.4 (2) ์๋๋ก์ด๋ ์ค์ android.. 2023. 7. 18. flutter button widget ๋ฒํผ ์์ ฏ๋ค import 'package:flutter/material.dart'; void main(){ runApp(MyApp()); } class MyApp extends StatelessWidget{ @override Widget build(BuildContext context){ return MaterialApp( home: Scaffold( body: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Center( child: const Text('hello', style: TextStyle( fontSize: 16.0, fontWeight: FontWeight.w700, color: Colors.blue, ), ), ), TextButto.. 2023. 7. 15. ์ด์ 1 2 3 4 5 6 ยทยทยท 13 ๋ค์