본문 바로가기

Package

Url 런처 Redirector on Flutter button tap

 

URL을 설정해서 버튼을 누르면 이동하게 해주는 패키지로,

리다이렉트 기능을 쉽게 구현 할 수 있게 해준다.

 

flutter pub add url_launcher
dependencies:
  url_launcher: ^6.2.2
import 'package:url_launcher/url_launcher.dart';
 

 

  Future<void> _launchUrl(url) async {
    if (!await launchUrl(url)) {
      throw Exception('Could not launch $url');
    }
  }
버튼을 누르면 메써드를 통해 유튜브를 리다이렉트 해준다. 
onPressed: (){
                    final Uri _url = Uri.parse('https://youtube.com');
                   _launchUrl(_url); }