web_browser
一個網頁瀏覽器組件。與 webview_flutter 不同,它內建跨平台導航和 URL 共享組件。可在 Android、iOS、瀏覽器及其他平台使用。
在Flutter中顯示網站。包含導航/分享按鈕、防釣魚設計等。
^1.0.2{"sdk":"flutter"}^4.0.6^3.4.2^0.2.2+1^3.2.1^6.3.1^2.0.1{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
The package gives you Browser, a Flutter widget for displaying web pages.
The package is built on top of webview_flutter and it adds navigation widgets that:
Browser has been tested in Android, iOS, and browsers. By adding relevant "webview_flutter" plugin dependencies to your "pubspec.yaml", you can use this package in Windows, Mac OS X, and Linux too.
Licensed under the Apache License 2.0.
In pubspec.yaml:
dependencies:
web_browser: ^0.7.4
import 'package:flutter/material.dart';
import 'package:web_browser/web_browser.dart';
void main() {
runApp(const MaterialApp(
home: Scaffold(
body: SafeArea(
child: Browser(
initialUriString: 'https://flutter.dev/',
),
),
),
));
}
The package contains two designs, Cupertino (web_browser.cupertino) and Material (web_browser.material). By default, the package chooses a Cupertino or Material design based on whether the app is CupertinoApp or MaterialApp. You can override the defaults by using relevant parameters of Browser() constructor.
The Cupertino and Material navigation bars look like this:
https://raw.githubusercontent.com/dint-dev/web_browser/HEAD/screenshots/cupertino.png
https://raw.githubusercontent.com/dint-dev/web_browser/HEAD/screenshots/material.png
Use BrowserLocalizations to localize the widgets.
void main() {
runApp(MaterialApp(
localizations: [
...browserLocalizationsList,
// ...
],
// ...
));
}
final browserLocalizationsList = [
// Spanish localization
BrowserLocalizations.forLocale(
locale: Locale('es'),
load: (locale) async => BrowserLocalizations(
couldNotReach: 'No se pudo acceder al sitio web.',
// ...
),
),
];
You can give various parameters to Browser:
import 'package:flutter/material.dart';
import 'package:web_browser/web_browser.dart';
void main() {
runApp(const MaterialApp(
home: Scaffold(
body: SafeArea(
child: Browser(
initialUriString: 'https://flutter.dev/',
controller: BrowserController(
// "User-Agent" HTTP header.
userAgent: 'Your user agent',
// Can user zoom into the content? Default is true.
isZoomingEnabled: false,
)
),
),
),
));
}
For end-users privacy, it is good to clear:
You can enable this by setting:
import 'package:web_browser/web_browser.dart';
void main() {
// Clear when the app is started
BrowserController.resetGlobalStateAtStart = true;
// Clear every now and then.
BrowserController.globalStateExpiration = const Duration(days: 1);
// ...
}
To access WebViewController by using browserController.webViewController.