목적 : flutter 를 이용하여 인터넷에서 웹페이지 가져오는 방법 1. pubspec.yaml http 모듈 추가 dependencies: http: ^0.13.6 http 패키지를 가져옵니다. import 'package:http/http.dart' as http; 또한 AndroidManifest.xml 파일에 인터넷 권한을 추가하세요. 2. 네트워크 요청하기 Future fetchPrdCd() async { final response = await http.get(Uri.parse('http://abcd.com/quics')); if(response.statusCode == 200) { print('>>>환율위젯받아옴'+response.body); } else { throw Exception("..