티스토리 뷰
Flutter에서 웹뷰를 띄워보겠습니다.
1. 라이브러리 설정
[pubspec.yaml]에 해당 라이브러리를 추가해줍니다.
dependencies:
flutter:
webview_flutter: ^3.0.4 // 최신버전으로 적어주세요
최신버전 확인 : https://pub.dev/packages/webview_flutter/install
아니면 터미널에 다음 명령어를 입력하셔도 됩니다. (자동으로 최신버전 다운로드)
flutter pub add webview_flutter
2. 웹 뷰 컴포넌트 생성
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class CustomWebView extends StatelessWidget {
const CustomWebView({super.key});
@override
Widget build(BuildContext context) {
return SizedBox(
width: double.infinity,
height: MediaQuery.of(context).size.height - 200,
child: const WebView(
initialUrl:
'https://google.com',
javascriptMode: JavascriptMode.unrestricted,
),
);
}
}
간단히 WevView 컴포넌트를 사용해주면 됩니다.
width와 height를 적당히 설정해주지 않으면 에러가 나므로 주의해주세요!
화면에 꽉 차는 자연스러운 웹뷰를 원하신다면 SafeArea 위젯을 사용하시는걸 추천드립니다.
참고로, url를 잘 입력했는데 웹뷰가 뜨지 않는다면
javascriptMode: JavascriptMode.unrestricted,
이 속성을 설정했는지 확인해주세요!
자바스크립트 사용을 허용하는 코드인데, 몇몇 페이지에서 이 설정 없이는 웹뷰가 뜨지 않습니다!
감사합니다.
'Flutter' 카테고리의 다른 글
[Flutter] Flavor로 빌드 환경 나누기 + get_it (0) | 2024.03.19 |
---|---|
[Flutter][Error] DioError [DioErrorType.other]: type 'String' is not a subtype of type 'Map<String, dynamic>?' in type cast With Retrofit+Freezed (2) | 2022.09.22 |
[Flutter][GetX] GetX로 BottomNavigationBar 만들기 (1) | 2022.08.18 |
[Flutter] BottomNavigationBar 커스텀하기 (0) | 2022.08.16 |
[Flutter] 하단탭바, BottomNavigationBar 만들기 (0) | 2022.08.10 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Swift Concurrency
- Bloking/Non-bloking
- SwiftUI
- 소프트웨어마에스트로
- 노션
- swift
- 아키텍쳐 패턴
- MVI
- 리액티브 프로그래밍
- 코디네이터 패턴
- Architecture Pattern
- GetX
- RX
- programmers
- Flux
- healthkit
- coordinator pattern
- Flutter
- DocC
- SWM
- ios
- notion
- reactive programming
- 프로그래머스
- 비동기/동기
- combine
- MVC
- TestCode
- MVVM
- design pattern
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함