Open LeoAndo opened 3 years ago
レイアウトは以下を参考に。 https://github.com/LeoAndo/xamarin-forms-training/blob/main/ToastSample/ToastSample/MainPage.xaml
C#のコードは以下を参考に。 https://github.com/LeoAndo/xamarin-forms-training/blob/main/ToastSample/ToastSample/MainPage.xaml.cs
Toastの見た目を自分好みにカスタマイズしたい場合は、CrossToastPopUp.Current.ShowCustomToast
メソッドを使用する。
カスタマイズで色の選択に困ったら、以下のマテリアルカラーパレットが参考になる。 https://mui.com/customization/color/#color-palette
実行結果は、https://github.com/LeoAndo/xamarin-forms-training/pull/109#issue-1025899351 を参照ください。
はじめに
Android風のToastをIOSでも使いたい場合は結論として、NugetでToast表示用のパッケージ(
Plugin.Toast
)を使った方が良さそう。このissueでは、その導入方法と実装サンプルを示します。