在flutter应用程序中是否有插件或添加Google搜索的可能性?将有一个带有文本的按钮。如果用户单击该按钮,它将带该文本并转到浏览器并在google中搜索。在html中是这样的:
<form method="get" action="http://www.google.com/search">
<div style="border:1px solid black;padding:4px;width:20em;"> <table border="0" cellpadding="0">
<tr>
<td>
<input type="text" name="q" size="25" maxlength="255" value="" />
<input type="submit" value="Google Search" />
</td>
</tr>
</table>
</div>
</form>
如何在颤动中实现这一点?
答案 0 :(得分:1)
使用url_launcher插件。要搜索特定内容,请将query parameter附加到Google网址中,例如:https://www.google.com/search?q=query+goes+here