Git Product home page Git Product logo

Comments (2)

gaelian avatar gaelian commented on May 28, 2024 1

For anyone coming across this in the future, I managed to get most of what I was hoping for by overriding OnResume(). For example:

type App () as app = 
    inherit Application ()

    let runner = 
        App.program
        |> XamarinFormsProgram.run app

    override this.OnResume () =
        runner.Dispatch App.Msg.RefreshTheme

from fabulous.xamarinforms.

edgarfgp avatar edgarfgp commented on May 28, 2024 1

@gaelian . I'm implementing a similar use case and what I end up doing was to :

  • Listen for the global theme changed event
    let runner =
    Program.mkProgram App.init App.update App.view
    |> XamarinFormsProgram.run app

    let onRequestedThemeChanged =
    EventHandler(fun _ args -> runner.Dispatch(Msg.AppThemeChanged args.RequestedTheme))

    override this.OnStart() =
    Application.Current.RequestedThemeChanged.AddHandler(onRequestedThemeChanged)`

  • The on the AppThemeChanged make and batch update to all the views to switch the styles to the respective theme
    | AppThemeChanged appTheme ->
    let loginAppThemeMsg =
    LoginPage.Msg.SetRequestedAppTheme appTheme

    let loanAppThemeMsg =
      LoanCommon.Msg.SetRequestedAppTheme appTheme
    
    let cmd =
      Cmd.batch [ Cmd.ofMsg (LoginPageMsg loginAppThemeMsg)
                  Cmd.ofMsg (NewLoanStepsMsg loanAppThemeMsg) ]
    
    model, cmd
    
  • You can find a sample on the AllControls sample https://github.com/fsprojects/Fabulous/blob/8bbb610a2bbfe239e175b8e25ac950d55ebc94f5/Fabulous.XamarinForms/samples/AllControls/AllControls/Samples/UseCases/AppTheming.fs#L7

  • To make sure the view are force be updated you need to add a property to all the model affected and use that in the view so the view will be forced to updated

from fabulous.xamarinforms.

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.