0.0.7 • Published 2 years ago

proton-framework v0.0.7

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
2 years ago

Proton

Proton is frontend framework inspired from Flutter.

To begin, let's take a look at a StatelessWidget

class HomePage extends StatelessWidget {
  build(context) {
    return GestureDetector({
      child: Text("Hello world!"),

      onTap: () => log("just got a click!"),
    });
  }
}

You might have spotted the difference. Proton is a TypeScript framework and example shown above is actually written in TypeScript.

Let's take a look at how to use above widget:

new ProtonApp({
    target: "root-div",
    home: Container({
        child: new HomePage(),
    });
});

To run this example, you've to install Proton.

Install

  • npm install proton-framework or (npm i https://github.com/erlage/proton-framework for in-dev version)

  • Create a empty <body>/<div> tag to mark the spot where you want to display ProtonApp:

    <body>
      <div id="root-div"></div>
    </body>
  • Import ProtonApp & Widgets:

    import { ProtonApp, Container, Text } from "../node_modules/proton-framework/dist/proton.js";
  • Create a ProtonApp inside your ts code:

    new ProtonApp({
      key: "proton-app",
      target: "root-div",
      home: Container({
        child: Text("Hello world!"),
      }),
    });
  • Done! you can test it in a Web browser.

Let's talk more about Widgets in Proton,

Widget props

Each widget accept different set of properties(params, props, whatever).

  1. Widget's key property is one of the most important prop. Internally key is used as widget indentity for lookups on rebuilds. Therefore it must uniquely identifies a widget in your entire app. For that reason, it's made optional and framework will take care of generating it for you. However you can set it if you want just make sure to keep it unique app-wide.

  2. Styling props are CSS specific props which can be used to directly apply CSS rules on a widget... read more.

  3. Layout props deals with Widget's layout. Widgets that accept props such as width-height also accept special props which can be used to alter the default way framework measure provided values... read more.

Widgets index

Elements:

Layout:

Gestures:

Main:

... working on more

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago