๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

์›น๊ณต๋ทฐ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.