1

我使用 url_launcher 包将邮件集成到颤振中。主题和正文作为查询参数给出。

 final Uri _emailLaunchUri = Uri(
                  scheme: 'mailto',
                  path: 'mail@qapp.how',
                  queryParameters: {
                      'body':
                          'this is sample text'
                    } 
                );

这将给出this+is+sample+text邮件中的文本。

4

1 回答 1

1

而不是 queryParameters 使用查询。

final Uri _emailLaunchUri = Uri(
                  scheme: 'mailto',
                  path: 'mail@qapp.how',
                  query:
                       'body=this is sample text',
                );
于 2021-04-29T16:21:36.480 回答