├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── XFWallet.sln └── XFWallet ├── XFWallet.Android ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Renderers │ └── CustomEntryBorderlessRenderer.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── ic_close.png │ │ ├── ic_down_arrow.png │ │ ├── ic_heart.png │ │ ├── ic_menu.png │ │ ├── ic_notification.png │ │ ├── ic_search.png │ │ └── ic_shopping_bag.png │ ├── drawable-mdpi │ │ ├── ic_close.png │ │ ├── ic_down_arrow.png │ │ ├── ic_heart.png │ │ ├── ic_menu.png │ │ ├── ic_notification.png │ │ ├── ic_search.png │ │ └── ic_shopping_bag.png │ ├── drawable-xhdpi │ │ ├── ic_close.png │ │ ├── ic_down_arrow.png │ │ ├── ic_heart.png │ │ ├── ic_menu.png │ │ ├── ic_notification.png │ │ ├── ic_search.png │ │ └── ic_shopping_bag.png │ ├── drawable-xxhdpi │ │ ├── ic_close.png │ │ ├── ic_down_arrow.png │ │ ├── ic_heart.png │ │ ├── ic_menu.png │ │ ├── ic_notification.png │ │ ├── ic_search.png │ │ └── ic_shopping_bag.png │ ├── drawable-xxxhdpi │ │ ├── ic_close.png │ │ ├── ic_down_arrow.png │ │ ├── ic_heart.png │ │ ├── ic_menu.png │ │ ├── ic_notification.png │ │ ├── ic_search.png │ │ └── ic_shopping_bag.png │ ├── drawable │ │ ├── amazon.png │ │ ├── amex.png │ │ ├── careem.png │ │ ├── centrepoint.png │ │ ├── ic_x_left.png │ │ ├── ic_x_right.png │ │ ├── mask.png │ │ ├── mask2.png │ │ ├── mastercard.png │ │ ├── mcdonalds.png │ │ ├── starbucks.png │ │ └── visa.png │ ├── layout │ │ ├── Tabbar.xml │ │ └── Toolbar.xml │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ └── values │ │ ├── colors.xml │ │ └── styles.xml └── XFWallet.Android.csproj ├── XFWallet.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── Entitlements.plist ├── Info.plist ├── Interfaces │ └── StatusBarStyle.cs ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ └── CustomEntryBorderlessRenderer.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LaunchScreen.storyboard │ ├── amazon.png │ ├── amex.png │ ├── careem.png │ ├── centrepoint.png │ ├── ic_close.png │ ├── ic_close@2x.png │ ├── ic_close@3x.png │ ├── ic_down_arrow.png │ ├── ic_down_arrow@2x.png │ ├── ic_down_arrow@3x.png │ ├── ic_heart.png │ ├── ic_heart@2x.png │ ├── ic_heart@3x.png │ ├── ic_menu.png │ ├── ic_menu@2x.png │ ├── ic_menu@3x.png │ ├── ic_notification.png │ ├── ic_notification@2x.png │ ├── ic_notification@3x.png │ ├── ic_search.png │ ├── ic_search@2x.png │ ├── ic_search@3x.png │ ├── ic_shopping_bag.png │ ├── ic_shopping_bag@2x.png │ ├── ic_shopping_bag@3x.png │ ├── ic_x_left.png │ ├── ic_x_right.png │ ├── mask.png │ ├── mask2.png │ ├── mastercard.png │ ├── mcdonalds.png │ ├── starbucks.png │ └── visa.png └── XFWallet.iOS.csproj └── XFWallet ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Behaviors └── MaskBehavior.cs ├── Fonts ├── Poppins-Light.ttf ├── Poppins-Medium.ttf ├── Poppins-Regular.ttf └── Poppins-SemiBold.ttf ├── Helpers ├── CreditCardHelper.cs ├── ExtensionMethods.cs └── Helper.cs ├── Interfaces └── IStatusBarStyle.cs ├── Models ├── Card.cs └── Store.cs ├── Renderers └── CustomEntryBorderless.cs ├── ViewModels ├── AddCreditCardPageViewModel.cs ├── BaseViewModel.cs └── MainPageViewModel.cs ├── Views ├── AddCreditCardPage.xaml ├── AddCreditCardPage.xaml.cs ├── MainPage.xaml └── MainPage.xaml.cs └── XFWallet.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/README.md -------------------------------------------------------------------------------- /XFWallet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet.sln -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/MainActivity.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Renderers/CustomEntryBorderlessRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Renderers/CustomEntryBorderlessRenderer.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-hdpi/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-mdpi/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xhdpi/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxhdpi/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable-xxxhdpi/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/amazon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/amex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/amex.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/careem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/careem.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/centrepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/centrepoint.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/ic_x_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/ic_x_left.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/ic_x_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/ic_x_right.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/mask.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/mask2.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/mastercard.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/mcdonalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/mcdonalds.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/starbucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/starbucks.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/drawable/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/drawable/visa.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /XFWallet/XFWallet.Android/XFWallet.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.Android/XFWallet.Android.csproj -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Entitlements.plist -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Info.plist -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Interfaces/StatusBarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Interfaces/StatusBarStyle.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Main.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Renderers/CustomEntryBorderlessRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Renderers/CustomEntryBorderlessRenderer.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/Default.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/amazon.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/amex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/amex.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/careem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/careem.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/centrepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/centrepoint.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_close.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_close@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_close@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_down_arrow.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_down_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_down_arrow@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_down_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_down_arrow@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_heart.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_heart@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_heart@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_menu.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_menu@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_menu@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_notification.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_notification@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_notification@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_search.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_search@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_search@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_shopping_bag.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_shopping_bag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_shopping_bag@2x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_shopping_bag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_shopping_bag@3x.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_x_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_x_left.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/ic_x_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/ic_x_right.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/mask.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/mask2.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/mastercard.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/mcdonalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/mcdonalds.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/starbucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/starbucks.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/Resources/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/Resources/visa.png -------------------------------------------------------------------------------- /XFWallet/XFWallet.iOS/XFWallet.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet.iOS/XFWallet.iOS.csproj -------------------------------------------------------------------------------- /XFWallet/XFWallet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/App.xaml -------------------------------------------------------------------------------- /XFWallet/XFWallet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/App.xaml.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/AssemblyInfo.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Behaviors/MaskBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Behaviors/MaskBehavior.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /XFWallet/XFWallet/Fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /XFWallet/XFWallet/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /XFWallet/XFWallet/Fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /XFWallet/XFWallet/Helpers/CreditCardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Helpers/CreditCardHelper.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Helpers/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Helpers/ExtensionMethods.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Helpers/Helper.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Interfaces/IStatusBarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Interfaces/IStatusBarStyle.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Models/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Models/Card.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Models/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Models/Store.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Renderers/CustomEntryBorderless.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Renderers/CustomEntryBorderless.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/ViewModels/AddCreditCardPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/ViewModels/AddCreditCardPageViewModel.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Views/AddCreditCardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Views/AddCreditCardPage.xaml -------------------------------------------------------------------------------- /XFWallet/XFWallet/Views/AddCreditCardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Views/AddCreditCardPage.xaml.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Views/MainPage.xaml -------------------------------------------------------------------------------- /XFWallet/XFWallet/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /XFWallet/XFWallet/XFWallet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altevir/xamarinforms-wallet-creditcard/HEAD/XFWallet/XFWallet/XFWallet.csproj --------------------------------------------------------------------------------