簡體   English   中英

url 啟動器 flutter 黑屏

[英]Black screen in url launcher flutter

當我按下url_launcher操作按鈕時。 然后應用最小化它。 然后再次go回到app,頁面會黑屏

問題

如果您使用的是 android 平台,請確保您已在 AndroidManifest.xml 中添加以下行。

<queries>
  <!-- If your app opens https URLs -->
  <intent>
    <action android:name="android.intent.action.VIEW" />
    <data android:scheme="https" />
  </intent>
  <!-- If your app makes calls -->
  <intent>
    <action android:name="android.intent.action.DIAL" />
    <data android:scheme="tel" />
  </intent>
  <!-- If your sends SMS messages -->
  <intent>
    <action android:name="android.intent.action.SENDTO" />
    <data android:scheme="smsto" />
  </intent>
  <!-- If your app sends emails -->
  <intent>
    <action android:name="android.intent.action.SEND" />
    <data android:mimeType="*/*" />
  </intent>
</queries>

如果您使用的是 IOS 平台,請確保您已在 info.plist 文件中添加以下行 -

<key>LSApplicationQueriesSchemes</key>
<array>
  <string>https</string>
  <string>http</string>
</array>

在前端

launch(url);//在此方法中傳遞 URL。

注意:不要忘記在您的應用中添加所需的權限。 喜歡 - 互聯網許可...等。

希望對您有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM