shuhelohelo’s blog

Xamarin.Forms多めです.

2020-06-03から1日間の記事一覧

ResourceDictionaryを単独のファイルに切り分ける

devblogs.microsoft.com ButtonやLabelを始めとする様々な見た目を指定するためにResourceDictionaryを使います.例えば以下のように. <ContentPage.Resources> <ResourceDictionary> <Style TargetType="Entry"> <Setter Property="PlaceholderColor" Value="Red" /> </Style> </ResourceDictionary> </ContentPage.Resources> これが定義されたContentPage内のすべてのEntryに…

Xamarin.Forms: Shellを使う場合のログインFlow

mallibone.com Shellは先頭のShellContentがデフォルトで表示されることを利用し,ローディングページ(LoadingPage)をShellContentとして先頭に置いている. LoadingPageはLoadingPage.xaml.csで以下のように初期化処理を行っている. internal LoadingViewMode…

Xamarin.FormsでLottieを使ってアニメーションを表示する

www.youtube.com LottieはAirBnBが開発した,アニメーションを表示するライブラリ. 表示させるアニメーションはこちらのサイトに公開されている. lottiefiles.com 動画はiOSの例なので,Androidはどうしようかと探した.この記事はAndroidの情報です.参考にした…