Skip to content

Instantly share code, notes, and snippets.

View myroot's full-sized avatar
:octocat:
sngn.lee

Seungkeun Lee myroot

:octocat:
sngn.lee
View GitHub Profile
@myroot
myroot / EmbeddedBrowser.xaml
Created July 11, 2019 05:58
How to use google api client libraries in Tizen.NET with Xamarin.forms
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="GoogleOAuthTest.EmbeddedBrowser">
<ContentPage.Content>
<WebView x:Name="Broswer" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"/>
</ContentPage.Content>
<ContentPage.ToolbarItems>
<ToolbarItem Text="Cancel" Order="Secondary" Clicked="OnCancel"/>
</ContentPage.ToolbarItems>