Skip to content

Commit 70fc2e5

Browse files
author
johnathanalyst
committed
Updated repo
1 parent 36340dd commit 70fc2e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+4814
-1724
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
<p align="center">
2-
<img width='350' src='https://github.com/chivington/Unity/blob/main/imgs/unity.jpg' alt='Unity UI Logo'/>
2+
<img width='350' src='https://github.com/johnathanalyst/FlowState/blob/main/imgs/logo.jpg' alt='FlowState UI Logo'/>
33
</p>
44

5-
# Unity UI
5+
# FlowState UI
66
A super minimalistic combined UI framework &amp; state management engine I developed, based on React &amp; Redux. The minimalistic nature is designed for:
77

88
1. Extremely fast load times in web browsers.
99
2. Easily constructing new custom UI modules.
10-
3. Porting to other languages like Java and Python for non-web applications.
10+
3. Adaptive for any device or screen type.
11+
4. Porting to other languages like Java and Python for non-web applications.
1112

1213
The state management portion can also be used alone to simplify CLI applications, backend services, and other contexts where a UI is not required or wanted.
1314

14-
See [Components](https://github.com/chivington/Unity/tree/master#components) below for details.
15+
See [Components](https://github.com/johnathanalyst/FlowState/tree/master#components) below for details.
1516
See [chivington.github.io](https://chivington.github.io) for a demo.
1617

1718
![Build Status](https://img.shields.io/badge/build-Stable-green.svg)
1819
![License](https://img.shields.io/badge/license-NONE-lime.svg)
1920
<br/><br/><br/>
2021

2122
## Contents
22-
* [Prerequisites](https://github.com/chivington/Unity/tree/master#prerequisites)
23-
* [Installation](https://github.com/chivington/Unity/tree/master#installation)
24-
* [Usage](https://github.com/chivington/Unity/tree/master#usage)
25-
* [Components](https://github.com/chivington/Unity/tree/master#components)
26-
* [Authors](https://github.com/chivington/Unity/tree/master#authors)
27-
* [Contributing](https://github.com/chivington/Unity/tree/master#contributing)
28-
* [Acknowledgments](https://github.com/chivington/Unity/tree/master#acknowledgments)
29-
* [License](https://github.com/chivington/Unity/tree/master#license)
23+
* [Prerequisites](https://github.com/johnathanalyst/FlowState/tree/master#prerequisites)
24+
* [Installation](https://github.com/johnathanalyst/FlowState/tree/master#installation)
25+
* [Usage](https://github.com/johnathanalyst/FlowState/tree/master#usage)
26+
* [Components](https://github.com/johnathanalyst/FlowState/tree/master#components)
27+
* [Authors](https://github.com/johnathanalyst/FlowState/tree/master#authors)
28+
* [Contributing](https://github.com/johnathanalyst/FlowState/tree/master#contributing)
29+
* [Acknowledgments](https://github.com/johnathanalyst/FlowState/tree/master#acknowledgments)
30+
* [License](https://github.com/johnathanalyst/FlowState/tree/master#license)
3031
<br/>
3132

3233
## Prerequisites
@@ -36,41 +37,40 @@ See [chivington.github.io](https://chivington.github.io) for a demo.
3637

3738
## Installation
3839
```bash
39-
git clone https://github.com/chivington/Unity.git
40+
git clone https://github.com/johnathanalyst/FlowState.git
4041
```
4142

4243
That's it!
4344
<br/>
4445

4546

4647
## Usage
47-
This repository contains a fully functional starter web app, which consists of the Unity UI framework and the basic modules needed to construct a web app skeleton.
48+
This repository contains a fully functional starter web app, which consists of the FlowState UI framework and the basic modules needed to construct a web app skeleton.
4849

49-
To begin building your own web app from this repository, simply clone this repository into the directory your server will serve from. That's all you need to do! Any choice of web server should work just fine, and begin serving your new Unity web app immediately!
50+
To begin building your own web app from this repository, simply clone this repository into the directory your server will serve from. That's all you need to do! Any choice of web server should work just fine, and begin serving your new FlowState web app immediately!
5051

51-
Feel free to ask me questions on [GitHub](https://github.com/chivington) or by [Email]([email protected])
52+
Feel free to ask me questions on [GitHub](https://github.com/johnathanalyst) or by [Email]([email protected])
5253
<br/><br/>
5354

5455

5556
## Components
56-
The Unity UI framework itself consists of:
57+
The FlowState UI framework itself consists of:
5758

58-
1. A barebones UI generation component inspired by React
59+
1. A barebones UI generation component inspired by React.
5960
2. A state management engine inspired by Redux.
6061

6162

62-
However, this repository also contains other items needed to create a basic web app using the Unity UI framework. These include:
63+
However, this repository also contains other items needed to create a basic web app using the FlowState UI framework. These include:
6364

64-
1. A few views most websites typically contain (Home, About, Contact).
65-
2. A few custom modules most web apps typically contain (Header, Menu, Footer, Router)
66-
3. A CSS file for styling and animations.
67-
4. A font directory containing one font I like (typically used on iOS devices)
68-
5. A directory of placeholder images & icons.
69-
6. A few items needed to make your web app function as a native app when added to a mobile homescreen (browserconfig.xml, site.webmanifest)
65+
1. A few views most websites typically contain (Home, About, Contact, etc.).
66+
2. A few custom modules most web apps typically contain (Header, Menu, Footer, Router, etc.)
67+
3. A font directory containing one font I like (typically used on iOS devices)
68+
4. A directory of placeholder images & icons.
69+
5. A few items needed to make your web app function as a native app when added to a mobile homescreen (browserconfig.xml, site.webmanifest)
7070

7171

7272
## Authors
73-
* **Johnathan Chivington:** [Web](https://chivington.net) or [GitHub](https://github.com/chivington)
73+
* **Johnathan Chivington:** [GitHub](https://github.com/johnathanalyst)
7474

7575
## Acknowledgments
7676
* **Dan Abramov:** For creating the amazing [Egghead](https://egghead.io/courses/fundamentals-of-redux-course-from-dan-abramov-bd5cc867) tutorial series! [Twitter](https://twitter.com/dan_abramov)

browserconfig.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<browserconfig>
33
<msapplication>
44
<tile>
5-
<square150x150logo src="/mstile-150x150.png"/>
5+
<square150x150logo src="/imgs/icons/manifest/mstile-150x150.png"/>
66
<TileColor>#2b5797</TileColor>
77
</tile>
88
</msapplication>

css/fonts/Avenir-Free/Avenir-Book.otf

-26.8 KB
Binary file not shown.
-26.6 KB
Binary file not shown.
-26.5 KB
Binary file not shown.

css/only.css

Lines changed: 0 additions & 104 deletions
This file was deleted.

favicon.ico

0 Bytes
Binary file not shown.

imgs/icons/app/app-blk.svg

Lines changed: 0 additions & 49 deletions
This file was deleted.

imgs/icons/app/app-wht.svg

Lines changed: 0 additions & 49 deletions
This file was deleted.

imgs/icons/app/email-blk.svg

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)