Skip to content

chkn/Xamarin.Forms.Segues

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Xamarin.Forms.Segues

A library that provides support for segues between Pages.

Segue what?

Xamarin.Forms provides navigation through the INavigation interface. Xamarin.Forms.Segues wraps many navigation actions from INavigation, exposing them through the Segue class. Becuase Segue implements ICommand, segues can simply be assigned to anything that has a Command property, reducing codebehind.

NuGet

Build:

Segue from XAML

Simply add this xmlns to the root element of your XAML:

xmlns:s="clr-namespace:Xamarin.Forms.Segues;assembly=Xamarin.Forms.Segues"

Then, you can add a segue to anything that has a Command property, such as a Button. The CommandParameter property is used to supply the type of Page that will be the destination of the segue. This example assumes you have a class called NextPage in your project:

<Button Text="Go to next page"
        Command="{s:Segue Push}"
        CommandParameter="{x:Type local:NextPage}" />

Note that the {s:Segue} markup extension creates and configures the Segue object. In this example, we specify a Push segue, but you could also specify any of the other supported actions.

Passing data

If you need to configure the page you are seguing to, you can use a DataTemplate. Here is the previous example, modified to set the BindingContext of the destination page to the BindingContext of the source page:

<Button Text="Go to next page with data"
        Command="{s:Segue Push}">
    <Button.CommandParameter>
        <DataTemplate>
            <local:NextPage BindingContext="{Binding}" />
        </DataTemplate>
    </Button.CommandParameter>
</Button>

Segue from Code

Creating and configuring a segue from code is not much harder:

var segue = new Segue ();

// Optionally, we can override the default segue action (Push) with the one we want
segue.Action = NavigationAction.Modal;

// Execute the segue, passing the source element that triggered it and the destination Page
await segue.ExecuteAsync (source, destination);

Here is another example of creating a segue in code.

Custom Segues

The default animations are good in many cases, but sometimes you will want to create a custom transition between screens. You can do this with a custom segue.

Cross-Platform Segues

Xamarin.Forms provides many powerful APIs for animation. Using these, you can create a cross-platform custom segue by simply subclassing the Segue class. Here's a basic template:

public class MyCustomSegue : Segue {
    protected override async Task ExecuteAsync (Page destination)
    {
        // 1. Set the desired properties on the destination page

        // 2. Animate the source page (accessible from the SourcePage property)

        // 3. Update the navigation stack, making the destination visible
        await base.ExecuteAsync (destination);

        // 4. Animate the destination page

        // 5. Reset the source page properties if necessary
    }
}

Here are some concrete examples of cross-platform custom segues.

Platform Segues

The PlatformSegue class (currently only implemented for iOS) integrates with the low-level platform and makes it possible to segue to and from Forms Pages and native screens (such as UIViewControllers on iOS). This class is used automatically when necessary.

Example of seguing from Page to UIViewController in XAML

About

Segue navigation for Xamarin.Forms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages