Giter Site home page Giter Site logo

ramonesteban78 / fabulous Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fabulous-dev/fabulous

0.0 1.0 0.0 15.62 MB

F# Functional App Development, using declarative dynamic UI

Home Page: https://fsprojects.github.io/Fabulous/

License: Other

Batchfile 0.03% F# 94.43% Shell 0.15% C# 5.38% CSS 0.01%

fabulous's Introduction

Fabulous

F# Functional App Development, using declarative dynamic UI

Build Status Join the chat at https://gitter.im/fsprojects/Fabulous

Never write a ViewModel class again! Conquer the world with clean dynamic UIs!

This repository contains 4 different libraries:

Package NuGet
Fabulous Fabulous NuGet version
Fabulous.CodeGen Fabulous.CodeGen NuGet version
Fabulous.XamarinForms Fabulous.XamarinForms NuGet version
Fabulous.StaticView.XamarinForms Fabulous.StaticView.XamarinForms NuGet version

Fabulous

This library aims to provide all the core abstractions and tools for writing your own app framework based on the "model view update" programming model and dynamic UI. It is a variation of elmish, an Elm architecture implemented in F#.

Learn more about Fabulous

Fabulous.CodeGen

This library automates the creation of bindings of existing UI frameworks for Fabulous through a simple JSON file. CodeGen will output an F# code file that you can include in your own project, like Fabulous for Xamarin.Forms.

It can be easily included in a build process, or run via a command line tool.

Learn more about Fabulous.CodeGen

Fabulous for Xamarin.Forms

This library allows you to use the ultra-simple Model-View-Update architecture to build applications for iOS, Android, Mac, WPF and more using Xamarin.Forms. It is built on Fabulous.

With Fabulous for Xamarin.Forms, you will be able to write complete applications fully in F#, like this:

type Model = { Text: string }
type Msg = ButtonClicked

let init () = { Text = "Hello Fabulous!" }

let update msg model =
    match msg with
    | ButtonClicked -> { model with Text = "Thanks for using Fabulous!" }

let view model dispatch =
    View.ContentPage(
        View.StackLayout(
            children=[
                View.Image(source = "fabulous.png")
                View.Label(text = model.Text, fontSize = 22.)
                View.Button(text = "Click me", command = (fun () -> dispatch ButtonClicked))
            ]
        )
    )

Learn more about Fabulous for Xamarin.Forms

Fabulous StaticView

This library allows you to write Xamarin.Forms apps using XAML and the Model-View-Update architecture.

It is not actively maintained.
If you wish to see more support for Fabulous.StaticView, please consider contributing.

Learn more about Fabulous StaticView

Contributing

Please contribute to this repository through issue reports, pull requests, code reviews and discussion.

See the contributor guide and the getting started guide to learn more.

Credits

This repository is inspired by Elmish.WPF, Elmish.Forms and elmish.

fabulous's People

Contributors

abrevinci avatar chrisevans9629 avatar cmeeren avatar cmthre3 avatar davidglassborow avatar dawedawe avatar dfarmer avatar dsyme avatar gibranrosa avatar gitter-badger avatar happypig375 avatar jackalcooper avatar jamesrandall avatar jamessdixon avatar kerams avatar lepelican avatar londospark avatar luizperes avatar mallibone avatar marcelstuder avatar nosami avatar pauldorehill avatar poborin avatar sasmithjr avatar sdaves avatar sergejdk avatar sergey-tihon avatar slang25 avatar timlariviere avatar zaid-ajaj avatar

Watchers

 avatar

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.