Code Monkey home page Code Monkey logo

Comments (10)

rid00z avatar rid00z commented on July 19, 2024 1

@fcogutierrez

Here's what you might be trying to do.... basically you can get the HomePageModel instance, and pass it into the MenuPageModel, from that instance you can call CoreMethod.PushPageModel.

var homePage = FreshPageModelResolver.ResolvePageModel<HomePageModel>();
this.Detail = new FreshNavigationContainer(homePage);
var homePageModel = homePage.GetModel();

var menuPage = FreshPageModelResolver.ResolvePageModel<MenuPageModel>(homePageModel);
this.Master = menuPage;

homePageModel.CoreMethods.PopToRoot();
homePageModel.CoreMethods.PushPageModel<SecondLevelPage>();

from freshmvvm.

mohammad-zr avatar mohammad-zr commented on July 19, 2024 1

Thank you @rid00z for your great work.
I use the code you mentioned earlier and it works fine but a problem is master page still showing after clicking on a button that shows another page on detail section.
how can i hide master menu?

from freshmvvm.

rid00z avatar rid00z commented on July 19, 2024

FreshMvvm has a built in master detail Navigation, you can use that or take
the code from that and modify.

Thanks

On Tuesday, 29 March 2016, fcogutierrez [email protected] wrote:

Hello,

I have a MenuPage (and MenuPageModel) as Master page. This menu has a list
of options with some commands binded.

How can I do for do the navigation (PushAsync) from MenuPageModel? Here is
my code.

    var menuPage = FreshPageModelResolver.ResolvePageModel<MenuPageModel>();
    this.Master = menuPage;

    var homePage = FreshPageModelResolver.ResolvePageModel<HomePageModel>();
    this.Detail = new FreshNavigationContainer(homePage);

Thanks.


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#57

Michael Ridland | Technical Director | Xamarin MVP

XAM Consulting - Mobile Technology Specialists

www.xam-consulting.com

Blog: www.michaelridland.com

from freshmvvm.

fcogutierrez avatar fcogutierrez commented on July 19, 2024

Yes @rid00z , I have tried, but the items of my menu have some icons and some customization. I don't want a simple list in the Master side.

Thanks.

from freshmvvm.

rid00z avatar rid00z commented on July 19, 2024

Please use the built in as an example and implement you own navigation
service.

Thanks

On Tuesday, 29 March 2016, fcogutierrez [email protected] wrote:

Yes @rid00z https://github.com/rid00z , I have tried, but the items of
my menu have some icons and some customization. I don't want a simple list
in the Master side.

Thanks.


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#57 (comment)

Michael Ridland | Technical Director | Xamarin MVP

XAM Consulting - Mobile Technology Specialists

www.xam-consulting.com

Blog: www.michaelridland.com

from freshmvvm.

fcogutierrez avatar fcogutierrez commented on July 19, 2024

Good solution, thanks a lot @rid00z

from freshmvvm.

EmilAlipiev avatar EmilAlipiev commented on July 19, 2024

What is PopToRoot() doing? I couldnt find any explanation for it.

from freshmvvm.

rid00z avatar rid00z commented on July 19, 2024

It's pops all pages in current navigation stack.

from freshmvvm.

codegrue avatar codegrue commented on July 19, 2024

Any solution for hiding the menu after the click?

i.e. FreshMvvm equivalent to: MasterDetailPage.IsPresented = false;

from freshmvvm.

codegrue avatar codegrue commented on July 19, 2024

This worked but it feels like a hack. Would like to know if there is support in FreshMvvm itself:

In App.cs, add a property to expose the main (details) stack:

        private FreshMasterDetailNavigationContainer _mainStack;
        public FreshMasterDetailNavigationContainer MainStack{
            get {
                return _mainStack;
            }
        }

Then in menu view model, you can access this to call the native "IsPresented" property:

        public Command MenuCommand
        { 
            get => new Command(async () => { 
                await CoreMethods.PopToRoot(true);
                await CoreMethods.PushPageModel<DetailsViewModel>();
                (Application.Current as MyApp.App).MainStack.IsPresented = false;
            });
        }

from freshmvvm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.