0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Intent は ViewModel に書くべきか

Last updated at Posted at 2024-12-08

Jetpack Compose で指定したURLでWEBブラウザを開くならこう書けます。

@Composable
fun OpenLinkButton(
  urlHandler: UriHandler = LocalUriHandler.current
) {
  Button(
    onClick = {
      urlHandler.openUri("https://android.benigumo.com/")
    }
  ) {
    Text("Open Web link")
  }
}

メールアプリを開く場合も同様に文字列変更だけでいける。

しかし、

Viewにロジックが増えること。

どう思いますか。

ちょっと、タイトルとはずれてるけどつながってる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?