├── PopupSample.iOS ├── iTunesArtwork ├── iTunesArtwork@2x ├── Resources │ ├── Default.png │ ├── Icon-76.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76@2x.png │ ├── Icon-Small.png │ ├── Default-568h@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── Default-Portrait.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Default-Portrait@2x.png │ └── LaunchScreen.storyboard ├── Entitlements.plist ├── packages.config ├── Main.cs ├── AppDelegate.cs ├── Properties │ └── AssemblyInfo.cs ├── Info.plist └── PopupSample.iOS.csproj ├── PopupSample.Droid ├── Resources │ ├── drawable │ │ └── icon.png │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── icon.png │ ├── drawable-xxhdpi │ │ └── icon.png │ ├── layout │ │ ├── Toolbar.axml │ │ └── Tabbar.axml │ ├── values │ │ └── styles.xml │ └── AboutResources.txt ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── packages.config └── PopupSample.Droid.csproj ├── PopupSample ├── GettingStarted.Xamarin ├── packages.config ├── Pages │ ├── BasicPopup.xaml.cs │ ├── StilizedPopup.xaml.cs │ ├── BasicPopup.xaml │ ├── PropertiesPopup.xaml.cs │ ├── StilizedPopup.xaml │ ├── PropertiesPopup.xaml │ ├── HomePage.xaml │ └── HomePage.xaml.cs ├── App.cs ├── Properties │ └── AssemblyInfo.cs └── PopupSample.csproj ├── .gitignore └── PopupSample.sln /PopupSample.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/iTunesArtwork -------------------------------------------------------------------------------- /PopupSample.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/PopupSample/master/PopupSample.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /PopupSample/GettingStarted.Xamarin: -------------------------------------------------------------------------------- 1 | 2 | GS\XF\CS\App\GettingStarted.html 3 | false 4 | -------------------------------------------------------------------------------- /PopupSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PopupSample.iOS/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PopupSample.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PopupSample/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PopupSample/Pages/BasicPopup.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace PopupSample.Pages 10 | { 11 | public partial class BasicPopup 12 | { 13 | public BasicPopup() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PopupSample/Pages/StilizedPopup.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace PopupSample.Pages 10 | { 11 | public partial class StilizedPopup 12 | { 13 | public StilizedPopup() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /PopupSample/Pages/BasicPopup.xaml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /PopupSample.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace PopupSample.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /PopupSample/Pages/PropertiesPopup.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Rg.Plugins.Popup.Services; 7 | using Xamarin.Forms; 8 | 9 | namespace PopupSample.Pages 10 | { 11 | public partial class PropertiesPopup 12 | { 13 | public PropertiesPopup() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | private async void Button_OnClicked(object sender, EventArgs e) 19 | { 20 | await PopupNavigation.PopAsync(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /PopupSample/Pages/StilizedPopup.xaml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PopupSample.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /PopupSample/Pages/PropertiesPopup.xaml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /PopupSample/App.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using PopupSample.Pages; 6 | using Xamarin.Forms; 7 | 8 | namespace PopupSample 9 | { 10 | public class App : Application 11 | { 12 | public App() 13 | { 14 | var contentPage = new HomePage(); 15 | MainPage = new NavigationPage(contentPage); 16 | } 17 | 18 | protected override void OnStart() 19 | { 20 | // Handle when your app starts 21 | } 22 | 23 | protected override void OnSleep() 24 | { 25 | // Handle when your app sleeps 26 | } 27 | 28 | protected override void OnResume() 29 | { 30 | // Handle when your app resumes 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /PopupSample.Droid/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | 10 | namespace PopupSample.Droid 11 | { 12 | [Activity(Label = "PopupSample", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 14 | { 15 | protected override void OnCreate(Bundle bundle) 16 | { 17 | TabLayoutResource = Resource.Layout.Tabbar; 18 | ToolbarResource = Resource.Layout.Toolbar; 19 | 20 | base.OnCreate(bundle); 21 | 22 | global::Xamarin.Forms.Forms.Init(this, bundle); 23 | LoadApplication(new App()); 24 | } 25 | } 26 | } 27 | 28 | -------------------------------------------------------------------------------- /PopupSample.Droid/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /PopupSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Resources; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("PopupSample")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("PopupSample")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: NeutralResourcesLanguage("en")] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | -------------------------------------------------------------------------------- /PopupSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace PopupSample.iOS 9 | { 10 | // The UIApplicationDelegate for the application. This class is responsible for launching the 11 | // User Interface of the application, as well as listening (and optionally responding) to 12 | // application events from iOS. 13 | [Register("AppDelegate")] 14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 15 | { 16 | // 17 | // This method is invoked when the application has loaded and is ready to run. In this 18 | // method you should instantiate the window, load the UI into it and then make the window 19 | // visible. 20 | // 21 | // You have 17 seconds to return from this method, or iOS will terminate your application. 22 | // 23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 24 | { 25 | global::Xamarin.Forms.Forms.Init(); 26 | LoadApplication(new App()); 27 | 28 | return base.FinishedLaunching(app, options); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /PopupSample.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("PopupSample.Droid")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("PopupSample.Droid")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 26 | 27 | 30 | 31 | -------------------------------------------------------------------------------- /PopupSample.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("PopupSample.iOS")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("PopupSample.iOS")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /PopupSample.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.xml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable-hdpi/ 12 | icon.png 13 | 14 | drawable-ldpi/ 15 | icon.png 16 | 17 | drawable-mdpi/ 18 | icon.png 19 | 20 | layout/ 21 | main.xml 22 | 23 | values/ 24 | strings.xml 25 | 26 | In order to get the build system to recognize Android resources, set the build action to 27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 28 | instead operate on resource IDs. When you compile an Android application that uses resources, 29 | the build system will package the resources for distribution and generate a class called 30 | "Resource" that contains the tokens for each one of the resources included. For example, 31 | for the above Resources layout, this is what the Resource class would expose: 32 | 33 | public class Resource { 34 | public class drawable { 35 | public const int icon = 0x123; 36 | } 37 | 38 | public class layout { 39 | public const int main = 0x456; 40 | } 41 | 42 | public class strings { 43 | public const int first_string = 0xabc; 44 | public const int second_string = 0xbcd; 45 | } 46 | } 47 | 48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main 49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first 50 | string in the dictionary file values/strings.xml. 51 | -------------------------------------------------------------------------------- /PopupSample/Pages/HomePage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Scale 24 | Move 25 | Fade 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /PopupSample.iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIDeviceFamily 6 | 7 | 1 8 | 2 9 | 10 | UISupportedInterfaceOrientations 11 | 12 | UIInterfaceOrientationPortrait 13 | UIInterfaceOrientationLandscapeLeft 14 | UIInterfaceOrientationLandscapeRight 15 | 16 | UISupportedInterfaceOrientations~ipad 17 | 18 | UIInterfaceOrientationPortrait 19 | UIInterfaceOrientationPortraitUpsideDown 20 | UIInterfaceOrientationLandscapeLeft 21 | UIInterfaceOrientationLandscapeRight 22 | 23 | MinimumOSVersion 24 | 6.0 25 | CFBundleDisplayName 26 | PopupSample 27 | CFBundleIdentifier 28 | com.yourcompany.PopupSample 29 | CFBundleVersion 30 | 1.0 31 | CFBundleIconFiles 32 | 33 | Icon-60@2x 34 | Icon-60@3x 35 | Icon-76 36 | Icon-76@2x 37 | Default 38 | Default@2x 39 | Default-568h@2x 40 | Default-Portrait 41 | Default-Portrait@2x 42 | Icon-Small-40 43 | Icon-Small-40@2x 44 | Icon-Small-40@3x 45 | Icon-Small 46 | Icon-Small@2x 47 | Icon-Small@3x 48 | 49 | UILaunchStoryboardName 50 | LaunchScreen 51 | 52 | 53 | -------------------------------------------------------------------------------- /PopupSample/Pages/HomePage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Rg.Plugins.Popup.Animations; 7 | using Rg.Plugins.Popup.Enums; 8 | using Rg.Plugins.Popup.Interfaces.Animations; 9 | using Rg.Plugins.Popup.Services; 10 | using Xamarin.Forms; 11 | 12 | namespace PopupSample.Pages 13 | { 14 | public partial class HomePage : ContentPage 15 | { 16 | public HomePage() 17 | { 18 | InitializeComponent(); 19 | AnimationPicker.SelectedIndex = 0; 20 | } 21 | 22 | private async void SimplePopupClicked(object sender, EventArgs e) 23 | { 24 | await PopupNavigation.PushAsync(new BasicPopup() { CloseWhenBackgroundIsClicked = true }); 25 | } 26 | private async void StilizedPopupClicked(object sender, EventArgs e) 27 | { 28 | await PopupNavigation.PushAsync(new StilizedPopup()); 29 | } 30 | 31 | Dictionary Animations = new Dictionary() 32 | { 33 | {0, new ScaleAnimation() }, 34 | {1, new MoveAnimation() }, 35 | {2,new FadeAnimation() } 36 | }; 37 | 38 | private async void PropertiedPopupClicked(object sender, EventArgs e) 39 | { 40 | var propertiedPopup = new PropertiesPopup(); 41 | 42 | propertiedPopup.Animation = Animations[AnimationPicker.SelectedIndex]; 43 | propertiedPopup.BackgroundColor = Color.FromRgba(0, 0, 0, TransparencySlider.Value); 44 | propertiedPopup.CloseWhenBackgroundIsClicked = CloseOnTapSwitch.IsToggled; 45 | propertiedPopup.HasSystemPadding = SystemPaddingSwitch.IsToggled; 46 | 47 | await PopupNavigation.PushAsync(propertiedPopup); 48 | } 49 | 50 | private async void CustomizedAnimationClicked(object sender, EventArgs e) 51 | { 52 | var propertiedPopup = new PropertiesPopup(); 53 | 54 | var scaleAnimation = new ScaleAnimation 55 | { 56 | PositionIn = MoveAnimationOptions.Top, 57 | PositionOut = MoveAnimationOptions.Bottom, 58 | ScaleIn = 1.2, 59 | ScaleOut = 0.8, 60 | DurationIn = 400, 61 | DurationOut = 800, 62 | EasingIn = Easing.BounceIn, 63 | EasingOut = Easing.CubicOut, 64 | HasBackgroundAnimation = false 65 | }; 66 | 67 | propertiedPopup.Animation = scaleAnimation; 68 | await PopupNavigation.PushAsync(propertiedPopup); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /PopupSample.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/visualstudio,xamarinstudio 3 | 4 | ### XamarinStudio ### 5 | bin/ 6 | obj/ 7 | *.userprefs 8 | .packages 9 | 10 | ### VisualStudio ### 11 | ## Ignore Visual Studio temporary files, build results, and 12 | ## files generated by popular Visual Studio add-ons. 13 | ## 14 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 15 | 16 | # User-specific files 17 | *.suo 18 | *.user 19 | *.userosscache 20 | *.sln.docstates 21 | 22 | # User-specific files (MonoDevelop/Xamarin Studio) 23 | 24 | # Build results 25 | [Dd]ebug/ 26 | [Dd]ebugPublic/ 27 | [Rr]elease/ 28 | [Rr]eleases/ 29 | x64/ 30 | x86/ 31 | bld/ 32 | [Bb]in/ 33 | [Oo]bj/ 34 | [Ll]og/ 35 | 36 | # Visual Studio 2015 cache/options directory 37 | .vs/ 38 | # Uncomment if you have tasks that create the project's static files in wwwroot 39 | #wwwroot/ 40 | 41 | # MSTest test Results 42 | [Tt]est[Rr]esult*/ 43 | [Bb]uild[Ll]og.* 44 | 45 | # NUNIT 46 | *.VisualState.xml 47 | TestResult.xml 48 | 49 | # Build Results of an ATL Project 50 | [Dd]ebugPS/ 51 | [Rr]eleasePS/ 52 | dlldata.c 53 | 54 | # .NET Core 55 | project.lock.json 56 | project.fragment.lock.json 57 | artifacts/ 58 | **/Properties/launchSettings.json 59 | 60 | *_i.c 61 | *_p.c 62 | *_i.h 63 | *.ilk 64 | *.meta 65 | *.obj 66 | *.pch 67 | *.pdb 68 | *.pgc 69 | *.pgd 70 | *.rsp 71 | *.sbr 72 | *.tlb 73 | *.tli 74 | *.tlh 75 | *.tmp 76 | *.tmp_proj 77 | *.log 78 | *.vspscc 79 | *.vssscc 80 | .builds 81 | *.pidb 82 | *.svclog 83 | *.scc 84 | 85 | # Chutzpah Test files 86 | _Chutzpah* 87 | 88 | # Visual C++ cache files 89 | ipch/ 90 | *.aps 91 | *.ncb 92 | *.opendb 93 | *.opensdf 94 | *.sdf 95 | *.cachefile 96 | *.VC.db 97 | *.VC.VC.opendb 98 | 99 | # Visual Studio profiler 100 | *.psess 101 | *.vsp 102 | *.vspx 103 | *.sap 104 | 105 | # TFS 2012 Local Workspace 106 | $tf/ 107 | 108 | # Guidance Automation Toolkit 109 | *.gpState 110 | 111 | # ReSharper is a .NET coding add-in 112 | _ReSharper*/ 113 | *.[Rr]e[Ss]harper 114 | *.DotSettings.user 115 | 116 | # JustCode is a .NET coding add-in 117 | .JustCode 118 | 119 | # TeamCity is a build add-in 120 | _TeamCity* 121 | 122 | # DotCover is a Code Coverage Tool 123 | *.dotCover 124 | 125 | # Visual Studio code coverage results 126 | *.coverage 127 | *.coveragexml 128 | 129 | # NCrunch 130 | _NCrunch_* 131 | .*crunch*.local.xml 132 | nCrunchTemp_* 133 | 134 | # MightyMoose 135 | *.mm.* 136 | AutoTest.Net/ 137 | 138 | # Web workbench (sass) 139 | .sass-cache/ 140 | 141 | # Installshield output folder 142 | [Ee]xpress/ 143 | 144 | # DocProject is a documentation generator add-in 145 | DocProject/buildhelp/ 146 | DocProject/Help/*.HxT 147 | DocProject/Help/*.HxC 148 | DocProject/Help/*.hhc 149 | DocProject/Help/*.hhk 150 | DocProject/Help/*.hhp 151 | DocProject/Help/Html2 152 | DocProject/Help/html 153 | 154 | # Click-Once directory 155 | publish/ 156 | 157 | # Publish Web Output 158 | *.[Pp]ublish.xml 159 | *.azurePubxml 160 | # TODO: Comment the next line if you want to checkin your web deploy settings 161 | # but database connection strings (with potential passwords) will be unencrypted 162 | *.pubxml 163 | *.publishproj 164 | 165 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 166 | # checkin your Azure Web App publish settings, but sensitive information contained 167 | # in these scripts will be unencrypted 168 | PublishScripts/ 169 | 170 | # NuGet Packages 171 | *.nupkg 172 | # The packages folder can be ignored because of Package Restore 173 | **/packages/* 174 | # except build/, which is used as an MSBuild target. 175 | !**/packages/build/ 176 | # Uncomment if necessary however generally it will be regenerated when needed 177 | #!**/packages/repositories.config 178 | # NuGet v3's project.json files produces more ignorable files 179 | *.nuget.props 180 | *.nuget.targets 181 | 182 | # Microsoft Azure Build Output 183 | csx/ 184 | *.build.csdef 185 | 186 | # Microsoft Azure Emulator 187 | ecf/ 188 | rcf/ 189 | 190 | # Windows Store app package directories and files 191 | AppPackages/ 192 | BundleArtifacts/ 193 | Package.StoreAssociation.xml 194 | _pkginfo.txt 195 | 196 | # Visual Studio cache files 197 | # files ending in .cache can be ignored 198 | *.[Cc]ache 199 | # but keep track of directories ending in .cache 200 | !*.[Cc]ache/ 201 | 202 | # Others 203 | ClientBin/ 204 | ~$* 205 | *~ 206 | *.dbmdl 207 | *.dbproj.schemaview 208 | *.jfm 209 | *.pfx 210 | *.publishsettings 211 | orleans.codegen.cs 212 | 213 | # Since there are multiple workflows, uncomment next line to ignore bower_components 214 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 215 | #bower_components/ 216 | 217 | # RIA/Silverlight projects 218 | Generated_Code/ 219 | 220 | # Backup & report files from converting an old project file 221 | # to a newer Visual Studio version. Backup files are not needed, 222 | # because we have git ;-) 223 | _UpgradeReport_Files/ 224 | Backup*/ 225 | UpgradeLog*.XML 226 | UpgradeLog*.htm 227 | 228 | # SQL Server files 229 | *.mdf 230 | *.ldf 231 | 232 | # Business Intelligence projects 233 | *.rdl.data 234 | *.bim.layout 235 | *.bim_*.settings 236 | 237 | # Microsoft Fakes 238 | FakesAssemblies/ 239 | 240 | # GhostDoc plugin setting file 241 | *.GhostDoc.xml 242 | 243 | # Node.js Tools for Visual Studio 244 | .ntvs_analysis.dat 245 | node_modules/ 246 | 247 | # Typescript v1 declaration files 248 | typings/ 249 | 250 | # Visual Studio 6 build log 251 | *.plg 252 | 253 | # Visual Studio 6 workspace options file 254 | *.opt 255 | 256 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 257 | *.vbw 258 | 259 | # Visual Studio LightSwitch build output 260 | **/*.HTMLClient/GeneratedArtifacts 261 | **/*.DesktopClient/GeneratedArtifacts 262 | **/*.DesktopClient/ModelManifest.xml 263 | **/*.Server/GeneratedArtifacts 264 | **/*.Server/ModelManifest.xml 265 | _Pvt_Extensions 266 | 267 | # Paket dependency manager 268 | .paket/paket.exe 269 | paket-files/ 270 | 271 | # FAKE - F# Make 272 | .fake/ 273 | 274 | # JetBrains Rider 275 | .idea/ 276 | *.sln.iml 277 | 278 | # CodeRush 279 | .cr/ 280 | 281 | # Python Tools for Visual Studio (PTVS) 282 | __pycache__/ 283 | *.pyc 284 | 285 | # Cake - Uncomment if you are using it 286 | # tools/** 287 | # !tools/packages.config 288 | 289 | # End of https://www.gitignore.io/api/visualstudio,xamarinstudio 290 | 0 291 | -------------------------------------------------------------------------------- /PopupSample/PopupSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11.0 6 | Debug 7 | AnyCPU 8 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E} 9 | Library 10 | Properties 11 | PopupSample 12 | PopupSample 13 | 512 14 | v4.5 15 | Profile259 16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 17 | 18 | 19 | 20 | 21 | true 22 | full 23 | false 24 | bin\Debug\ 25 | DEBUG;TRACE 26 | prompt 27 | 4 28 | 29 | 30 | pdbonly 31 | true 32 | bin\Release\ 33 | TRACE 34 | prompt 35 | 4 36 | 37 | 38 | 39 | 40 | BasicPopup.xaml 41 | 42 | 43 | HomePage.xaml 44 | 45 | 46 | PropertiesPopup.xaml 47 | 48 | 49 | StilizedPopup.xaml 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\portable-win+net45+wp8+win8+wpa81\Rg.Plugins.Popup.dll 60 | True 61 | 62 | 63 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\portable-win+net45+wp8+win8+wpa81\Rg.Plugins.Popup.Platform.dll 64 | True 65 | 66 | 67 | ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll 68 | True 69 | 70 | 71 | ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll 72 | True 73 | 74 | 75 | ..\packages\Xamarin.Forms.2.3.3.193\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll 76 | True 77 | 78 | 79 | 80 | 81 | MSBuild:UpdateDesignTimeXaml 82 | Designer 83 | 84 | 85 | 86 | 87 | MSBuild:UpdateDesignTimeXaml 88 | Designer 89 | 90 | 91 | 92 | 93 | MSBuild:UpdateDesignTimeXaml 94 | Designer 95 | 96 | 97 | 98 | 99 | MSBuild:UpdateDesignTimeXaml 100 | Designer 101 | 102 | 103 | 104 | 105 | 106 | 107 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}. 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /PopupSample.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PopupSample", "PopupSample\PopupSample.csproj", "{5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PopupSample.Droid", "PopupSample.Droid\PopupSample.Droid.csproj", "{D9284442-81ED-4068-9D44-100204A0D18F}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PopupSample.iOS", "PopupSample.iOS\PopupSample.iOS.csproj", "{057298E9-823D-4E2B-94A1-1E13B83F639D}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU 15 | Ad-Hoc|iPhone = Ad-Hoc|iPhone 16 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator 17 | AppStore|Any CPU = AppStore|Any CPU 18 | AppStore|iPhone = AppStore|iPhone 19 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator 20 | Debug|Any CPU = Debug|Any CPU 21 | Debug|iPhone = Debug|iPhone 22 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 23 | Release|Any CPU = Release|Any CPU 24 | Release|iPhone = Release|iPhone 25 | Release|iPhoneSimulator = Release|iPhoneSimulator 26 | EndGlobalSection 27 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 28 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 29 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 30 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 31 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 32 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 33 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 34 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 35 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|Any CPU.Build.0 = Release|Any CPU 36 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|iPhone.ActiveCfg = Release|Any CPU 37 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|iPhone.Build.0 = Release|Any CPU 38 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 39 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 40 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 41 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|Any CPU.Build.0 = Debug|Any CPU 42 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|iPhone.ActiveCfg = Debug|Any CPU 43 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|iPhone.Build.0 = Debug|Any CPU 44 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 45 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 46 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|Any CPU.ActiveCfg = Release|Any CPU 47 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|Any CPU.Build.0 = Release|Any CPU 48 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|iPhone.ActiveCfg = Release|Any CPU 49 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|iPhone.Build.0 = Release|Any CPU 50 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 51 | {5F7BE6C0-75E1-4CB7-9516-D3E09AEF5F3E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 52 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 53 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 54 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 55 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 56 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 57 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 58 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 59 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 60 | {D9284442-81ED-4068-9D44-100204A0D18F}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 61 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 62 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|Any CPU.Build.0 = Release|Any CPU 63 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 64 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhone.ActiveCfg = Release|Any CPU 65 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhone.Build.0 = Release|Any CPU 66 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhone.Deploy.0 = Release|Any CPU 67 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 68 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 69 | {D9284442-81ED-4068-9D44-100204A0D18F}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 70 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 71 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|Any CPU.Build.0 = Debug|Any CPU 72 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 73 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhone.ActiveCfg = Debug|Any CPU 74 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhone.Build.0 = Debug|Any CPU 75 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhone.Deploy.0 = Debug|Any CPU 76 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 77 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 78 | {D9284442-81ED-4068-9D44-100204A0D18F}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 79 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|Any CPU.ActiveCfg = Release|Any CPU 80 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|Any CPU.Build.0 = Release|Any CPU 81 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|Any CPU.Deploy.0 = Release|Any CPU 82 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhone.ActiveCfg = Release|Any CPU 83 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhone.Build.0 = Release|Any CPU 84 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhone.Deploy.0 = Release|Any CPU 85 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 86 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 87 | {D9284442-81ED-4068-9D44-100204A0D18F}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 88 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone 89 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone 90 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone 91 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator 92 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator 93 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone 94 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.AppStore|iPhone.ActiveCfg = AppStore|iPhone 95 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.AppStore|iPhone.Build.0 = AppStore|iPhone 96 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator 97 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator 98 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Debug|Any CPU.ActiveCfg = Debug|iPhone 99 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Debug|iPhone.ActiveCfg = Debug|iPhone 100 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Debug|iPhone.Build.0 = Debug|iPhone 101 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 102 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 103 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Release|Any CPU.ActiveCfg = Release|iPhone 104 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Release|iPhone.ActiveCfg = Release|iPhone 105 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Release|iPhone.Build.0 = Release|iPhone 106 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 107 | {057298E9-823D-4E2B-94A1-1E13B83F639D}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 108 | EndGlobalSection 109 | GlobalSection(SolutionProperties) = preSolution 110 | HideSolutionNode = FALSE 111 | EndGlobalSection 112 | EndGlobal 113 | -------------------------------------------------------------------------------- /PopupSample.iOS/PopupSample.iOS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | 8.0.30703 7 | 2.0 8 | {057298E9-823D-4E2B-94A1-1E13B83F639D} 9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Exe 11 | PopupSample.iOS 12 | Resources 13 | PopupSample.iOS 14 | 15 | 16 | 17 | 18 | true 19 | full 20 | false 21 | bin\iPhoneSimulator\Debug 22 | DEBUG 23 | prompt 24 | 4 25 | false 26 | i386, x86_64 27 | None 28 | true 29 | 30 | 31 | none 32 | true 33 | bin\iPhoneSimulator\Release 34 | prompt 35 | 4 36 | None 37 | i386, x86_64 38 | false 39 | 40 | 41 | true 42 | full 43 | false 44 | bin\iPhone\Debug 45 | DEBUG 46 | prompt 47 | 4 48 | false 49 | ARMv7, ARM64 50 | iPhone Developer 51 | true 52 | Entitlements.plist 53 | 54 | 55 | none 56 | true 57 | bin\iPhone\Release 58 | prompt 59 | 4 60 | ARMv7, ARM64 61 | false 62 | iPhone Developer 63 | Entitlements.plist 64 | 65 | 66 | none 67 | True 68 | bin\iPhone\Ad-Hoc 69 | prompt 70 | 4 71 | False 72 | ARMv7, ARM64 73 | True 74 | Automatic:AdHoc 75 | iPhone Distribution 76 | Entitlements.plist 77 | 78 | 79 | none 80 | True 81 | bin\iPhone\AppStore 82 | prompt 83 | 4 84 | False 85 | ARMv7, ARM64 86 | Automatic:AppStore 87 | iPhone Distribution 88 | Entitlements.plist 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\Xamarin.IOS\Rg.Plugins.Popup.dll 121 | True 122 | 123 | 124 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\Xamarin.IOS\Rg.Plugins.Popup.IOS.dll 125 | True 126 | 127 | 128 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\Xamarin.IOS\Rg.Plugins.Popup.Platform.dll 129 | True 130 | 131 | 132 | 133 | 134 | 135 | ..\packages\Xamarin.Forms.2.3.3.193\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll 136 | True 137 | 138 | 139 | ..\packages\Xamarin.Forms.2.3.3.193\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll 140 | True 141 | 142 | 143 | ..\packages\Xamarin.Forms.2.3.3.193\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll 144 | True 145 | 146 | 147 | ..\packages\Xamarin.Forms.2.3.3.193\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll 148 | True 149 | 150 | 151 | 152 | 153 | 154 | {5f7be6c0-75e1-4cb7-9516-d3e09aef5f3e} 155 | PopupSample 156 | 157 | 158 | 159 | 160 | 161 | 162 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}. 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /PopupSample.Droid/PopupSample.Droid.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 8.0.30703 7 | 2.0 8 | {D9284442-81ED-4068-9D44-100204A0D18F} 9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Library 11 | Properties 12 | PopupSample.Droid 13 | PopupSample.Droid 14 | 512 15 | true 16 | Resources\Resource.Designer.cs 17 | Off 18 | Properties\AndroidManifest.xml 19 | true 20 | v6.0 21 | armeabi,armeabi-v7a,x86 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | true 31 | full 32 | false 33 | bin\Debug\ 34 | DEBUG;TRACE 35 | prompt 36 | 4 37 | True 38 | None 39 | 40 | 41 | pdbonly 42 | true 43 | bin\Release\ 44 | TRACE 45 | prompt 46 | 4 47 | False 48 | SdkOnly 49 | 50 | 51 | 52 | ..\packages\Xamarin.Forms.2.3.3.193\lib\MonoAndroid10\FormsViewGroup.dll 53 | True 54 | 55 | 56 | 57 | 58 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\MonoAndroid\Rg.Plugins.Popup.dll 59 | True 60 | 61 | 62 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\MonoAndroid\Rg.Plugins.Popup.Droid.dll 63 | True 64 | 65 | 66 | ..\packages\Rg.Plugins.Popup.1.0.4\lib\MonoAndroid\Rg.Plugins.Popup.Platform.dll 67 | True 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll 76 | True 77 | 78 | 79 | ..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll 80 | True 81 | 82 | 83 | ..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 84 | True 85 | 86 | 87 | ..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll 88 | True 89 | 90 | 91 | ..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll 92 | True 93 | 94 | 95 | ..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll 96 | True 97 | 98 | 99 | ..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll 100 | True 101 | 102 | 103 | ..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll 104 | True 105 | 106 | 107 | ..\packages\Xamarin.Forms.2.3.3.193\lib\MonoAndroid10\Xamarin.Forms.Core.dll 108 | True 109 | 110 | 111 | ..\packages\Xamarin.Forms.2.3.3.193\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 112 | True 113 | 114 | 115 | ..\packages\Xamarin.Forms.2.3.3.193\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 116 | True 117 | 118 | 119 | ..\packages\Xamarin.Forms.2.3.3.193\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 120 | True 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | {5f7be6c0-75e1-4cb7-9516-d3e09aef5f3e} 150 | PopupSample 151 | 152 | 153 | 154 | 155 | 156 | 157 | Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}. 158 | 159 | 160 | 161 | 162 | 163 | --------------------------------------------------------------------------------