├── .gitignore ├── LICENSE ├── ProfileScreen.Android ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── ProfileScreen.Android.csproj ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs └── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ ├── fork.png │ ├── icon.png │ ├── instagram.png │ ├── issue.png │ ├── linkedin.png │ ├── pull.png │ ├── star.png │ └── twitter.png │ ├── layout │ ├── Tabbar.xml │ └── Toolbar.xml │ ├── mipmap-anydpi-v26 │ ├── icon.xml │ └── icon_round.xml │ ├── mipmap-hdpi │ └── launcher_foreground.png │ ├── mipmap-mdpi │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ └── launcher_foreground.png │ └── values │ ├── colors.xml │ └── styles.xml ├── ProfileScreen.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-120-1.png │ │ ├── Icon-120.png │ │ ├── Icon-180.png │ │ └── Icon-80.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── ProfileScreen.iOS.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LaunchScreen.storyboard │ ├── fork.png │ ├── icon.png │ ├── instagram.png │ ├── issue.png │ ├── linkedin.png │ ├── pull.png │ ├── star.png │ └── twitter.png ├── ProfileScreen.sln ├── ProfileScreen ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainViewModel.cs └── ProfileScreen.csproj ├── README.md └── example.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/LICENSE -------------------------------------------------------------------------------- /ProfileScreen.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /ProfileScreen.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/MainActivity.cs -------------------------------------------------------------------------------- /ProfileScreen.Android/ProfileScreen.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/ProfileScreen.Android.csproj -------------------------------------------------------------------------------- /ProfileScreen.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/fork.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/instagram.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/issue.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/linkedin.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/pull.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/star.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/drawable/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/drawable/twitter.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /ProfileScreen.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /ProfileScreen.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-120-1.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Assets.xcassets/AppIcon.appiconset/Icon-80.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Entitlements.plist -------------------------------------------------------------------------------- /ProfileScreen.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Info.plist -------------------------------------------------------------------------------- /ProfileScreen.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Main.cs -------------------------------------------------------------------------------- /ProfileScreen.iOS/ProfileScreen.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/ProfileScreen.iOS.csproj -------------------------------------------------------------------------------- /ProfileScreen.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/Default.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/fork.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/icon.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/instagram.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/issue.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/linkedin.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/pull.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/star.png -------------------------------------------------------------------------------- /ProfileScreen.iOS/Resources/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.iOS/Resources/twitter.png -------------------------------------------------------------------------------- /ProfileScreen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen.sln -------------------------------------------------------------------------------- /ProfileScreen/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/App.xaml -------------------------------------------------------------------------------- /ProfileScreen/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/App.xaml.cs -------------------------------------------------------------------------------- /ProfileScreen/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProfileScreen/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/MainPage.xaml -------------------------------------------------------------------------------- /ProfileScreen/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/MainPage.xaml.cs -------------------------------------------------------------------------------- /ProfileScreen/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/MainViewModel.cs -------------------------------------------------------------------------------- /ProfileScreen/ProfileScreen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/ProfileScreen/ProfileScreen.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiMisiukevich/XamarinFormsProfilePage/HEAD/example.gif --------------------------------------------------------------------------------