Skip to content

Instantly share code, notes, and snippets.

View Filliny's full-sized avatar

Oleg Filipchuk Filliny

View GitHub Profile
@Filliny
Filliny / EmbeddedBrowser.xaml
Created April 27, 2020 14:23 — forked from myroot/EmbeddedBrowser.xaml
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>