shuhelohelo’s blog

Xamarin.Forms多めです.

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

Xamarin.Formsでスプラッシュスクリーン

スプラッシュスクリーンは起動時に表示する画面. 以下のアプリを参考にする. github.com このアプリでは以下の流れでスプラッシュスクリーンを使っていた. App.xaml.csでMainPage = new SplashScreen(); SplashScreen.xamlは中央にpngを表示させるだけ コー…

Xamarin.Formsアプリのパフォーマンス向上について

docs.microsoft.com UIについてだけでなく,様々な点についてパフォーマンス向上に関するTIPSが書かれている. 子要素が1つだけなのにStackLayoutを使わない <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="DisplayImage.HomePage"> <StackLayout> <Image Source="waterfront.jpg" /> </image></stacklayout></contentpage>

Xamarin.FormsでGoogle認証を使う

https://www.xamboy.com/2019/11/19/social-media-authentication-google-login-in-xamarin-forms/ [追記] ライブラリ公式のREADMEの方がわかりやすいかも. github.com Plugin.GoogleClientをインストールする. Firebaseでプロジェクトを作成する Plugin.Goo…

Xamarin.Forms: Azure CosmosDBを使う

docs.microsoft.com チュートリアルのとおりに. Cosmos DB側の作業 Azure PortalでCosmosDBのリソース作成とサンプルデータの追加を行う. リソースを作る 「Azure Cosmos DB」を検索して作成する. 以下のように入力する. Subscription 利用しているAzureのアカ…