2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
Volitare navigatro uti potest ad domicilium aperire postquam in textu clicking, ut "www.baidu.com. "Fieri potest utendo url_launcher
sarcina consequi.Primum, addere debes in tuopubspec.yaml
Add to fileurl_launcher
mnia.
url_launcher: ^6.3.0
Infra est specimen codice
- import 'package:flutter/material.dart';
- import 'package:url_launcher/url_launcher.dart';
-
- final Uri _url = Uri.parse('https://www.baidu.com');
-
- void main() => runApp(
- const MaterialApp(
- home: Material(
- child: Center(
- child: ElevatedButton(
- onPressed: _launchUrl,
- child: Text('点击打开百度'),
- ),
- ),
- ),
- ),
- );
-
- Future<void> _launchUrl() async {
- if (!await launchUrl(_url)) {
- throw Exception('Could not launch $_url');
- }
- }