Skip to content

Commit

Permalink
renamed sdk->create + logo
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiblaga89 committed May 10, 2023
1 parent 911a80a commit 2ae996d
Show file tree
Hide file tree
Showing 20 changed files with 3,178 additions and 1,826 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You can reach out to us through [@flexn_io](http://twitter.com/flexn_io) (the Fl

## Helping with Documentation

The Flexn documentation is hosted as part of the Flexn repository at https://github.com/flexn-io/flexn/docs. The website itself is located at <https://sdk.flexn.org/> and it is built using [Docusaurus](https://docusaurus.io/). If there's anything you'd like to change in the docs, you can get started by clicking on the "Edit" button located on the upper right of most pages in the website.
The Flexn documentation is hosted as part of the Flexn repository at https://github.com/flexn-io/flexn/docs. The website itself is located at <https://create.flexn.org/> and it is built using [Docusaurus](https://docusaurus.io/). If there's anything you'd like to change in the docs, you can get started by clicking on the "Edit" button located on the upper right of most pages in the website.

If you are adding new functionality or introducing a change in behavior, we will ask you to update the documentation to reflect your changes.

Expand All @@ -43,7 +43,7 @@ If you are adding new functionality or introducing a change in behavior, we will

Code-level contributions to Flexn generally come in the form of [pull requests](https://help.github.com/en/articles/about-pull-requests). These are done by forking the repo and making changes locally. Directly in the repo, there is the [`template` app](/packages/template) that you can install on your device (or simulators) and use to test the changes you're making to Flexn sources.

The process of proposing a change to Flexn SDK can be summarized as follows:
The process of proposing a change to Flexn Create can be summarized as follows:

1. Fork the Flexn repository and create your branch from `main`.
2. Make the desired changes to Flexn sources. Use the `packages/template` and `packages/harness` app to test them out.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://sdk.flexn.org">
<a href="https://create.flexn.org">
<img src="https://github.com/flexn-io/flexn/blob/main/docs/static/img/logo128.png?raw=true" height="128" width="128">
<h1 align="center">FlexnSDK</h1>
</a>
Expand Down Expand Up @@ -29,11 +29,11 @@ rnv new --projectTemplate @flexn/template

## Getting Started

https://sdk.flexn.org/docs/tutorials/basics/quickstart
https://create.flexn.org/docs/tutorials/basics/quickstart

## Documentation

https://sdk.flexn.org/docs/introduction
https://create.flexn.org/docs/introduction

## Community

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/components/app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { App, StyleSheet } from '@flexn/sdk';
const MyApp = () => {
return (
<App style={styles.container}>
<Text style={styles.text}>Hello from Flexn SDK!</Text>
<Text style={styles.text}>Hello from Flexn Create!</Text>
</App>
);
};
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/components/recyclable-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default MyComponent;

## Props

Since as core of RecyclableList Flexn SDK using open source library, full API reference can be found at https://github.com/Flipkart/recyclerlistview#props. However this version
Since as core of RecyclableList Flexn Create using open source library, full API reference can be found at https://github.com/Flipkart/recyclerlistview#props. However this version
is optimized to work with multiplatform environment and our Focus Manager so it has some API changes which is described below.

<Prop value="rowRenderer" /><Badge required />
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/components/screen.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const MyScreen = () => {
return (
<App>
<Screen style={styles.container}>
<Text style={styles.text}>Hello from Flexn SDK!</Text>
<Text style={styles.text}>Hello from Flexn Create!</Text>
</Screen>
</App>
);
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/guides/focus-manager.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ const MyApp = () => {
return (
<Screen style={styles.modal} screenOrder={1}>
<Pressable style={styles.button}>
<Text>Hello from Flexn SDK</Text>
<Text>Hello from Flexn Create</Text>
</Pressable>
<Pressable style={styles.button}>
<Text>Hello from Flexn SDK</Text>
<Text>Hello from Flexn Create</Text>
</Pressable>
<Pressable style={styles.button} onPress={() => setModalOpen(false)}>
<Text>Close modal</Text>
Expand Down Expand Up @@ -307,7 +307,7 @@ import { App, Screen, Text, Pressable, StyleSheet } from '@flexn/sdk';
const MyCustomComponent = ({ parentContext }: { parentContext?: any }) => {
return (
<Pressable parentContext={parentContext} style={styles.focusableElement}>
<Text>Hello from Flexn SDK</Text>
<Text>Hello from Flexn Create</Text>
</Pressable>
);
};
Expand All @@ -317,10 +317,10 @@ const MyApp = () => {
<App>
<Screen style={styles.container}>
<Pressable style={styles.focusableElement}>
<Text>Hello from Flexn SDK</Text>
<Text>Hello from Flexn Create</Text>
</Pressable>
<Pressable style={styles.focusableElement}>
<Text>Hello from Flexn SDK</Text>
<Text>Hello from Flexn Create</Text>
</Pressable>
<MyCustomComponent />
</Screen>
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ import TabItem from '@theme/TabItem';

# Introduction

⚡️ Flexn SDK will help you create a **multiplatform app in no time**.
⚡️ Flexn Create will help you create a **multiplatform app in no time**.

💵 Building multiple projects to support different platforms is expensive and time-consuming. Instead,
**focus on your content** and just import components from Flexn SDK.
**focus on your content** and just import components from Flexn Create.

📺 Built-in focus control system allows for better **control** of your application behavior on the big
screen.

## Getting Started

Welcome to the Flexn SDK documentation!
Welcome to the Flexn Create documentation!

If you're new to Flexn we recommend starting with [the learning course](tutorials/advanced/bootstrap).

The interactive course will guide you through everything you need to know to use Flexn SDK.
The interactive course will guide you through everything you need to know to use Flexn Create.

### System requirements

Expand Down Expand Up @@ -60,7 +60,7 @@ During `rnv new` you will be given an option to choose between these templates (
rnv new
```

If you chose Hello World or Blank templates, you also need to install Flexn SDK. Add the code below in `renative.json`, which is located in the root of the project folder, under plugins:
If you chose Hello World or Blank templates, you also need to install Flexn Create. Add the code below in `renative.json`, which is located in the root of the project folder, under plugins:

```json
"plugins": {
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorials/advanced/bootstrap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import TabItem from '@theme/TabItem';

# Bootstrap

In this tutorial we will not start completely from scratch as the aim is to explain our process of creating Flexn template and also showcase the befits of using Flexn SDK.
In this tutorial we will not start completely from scratch as the aim is to explain our process of creating Flexn template and also showcase the befits of using Flexn Create.

## Bootstrap Flexn template

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/tutorials/advanced/screens.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const ScreenHome = ({ navigation }: { navigation?: any }) => {
contentContainerStyle={theme.styles.container}
>
<Image style={theme.styles.image} source={ICON_LOGO} />
<Text style={theme.styles.textH1}>{'Flexn SDK Example'}</Text>
<Text style={theme.styles.textH1}>{'Flexn Create Example'}</Text>
<Text style={theme.styles.textH2}>v {packageJson.version}</Text>
<Text style={theme.styles.textH3}>{`platform: ${Api.platform}`}</Text>
<Text style={theme.styles.textH3}>{`factor: ${Api.formFactor}`}</Text>
Expand Down Expand Up @@ -118,7 +118,7 @@ const ScreenHome = ({ navigation }: { navigation?: any }) => {
<Icon name="github" size={theme.static.iconSize} color={theme.static.colorBrand} />
</TouchableOpacity>
<TouchableOpacity
onPress={() => openURL('https://sdk.flexn.org')}
onPress={() => openURL('https://create.flexn.org')}
style={theme.styles.icon}
{...testProps('template-screen-home-navigate-to-renative')}
>
Expand Down
6 changes: 3 additions & 3 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');

/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Flexn SDK',
title: 'Flexn Create',
tagline: 'Multiplatform is easy',
url: 'https://sdk.flexn.org',
url: 'https://create.flexn.org',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
Expand Down Expand Up @@ -46,7 +46,7 @@ const config = {
navbar: {
logo: {
alt: 'Flexn Logo',
src: 'img/FlexnSDk-logo.svg',
src: 'img/create-logo.svg',
},
items: [
{
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"@docusaurus/core": "2.0.0-beta.14",
"@docusaurus/plugin-google-gtag": "^2.0.0-beta.14",
"@docusaurus/plugin-google-gtag": "2.0.0-beta.14",
"@docusaurus/preset-classic": "2.0.0-beta.14",
"@mdx-js/react": "^1.6.21",
"clsx": "^1.1.1",
Expand Down
12 changes: 6 additions & 6 deletions docs/src/components/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,36 @@ export default function HomepageFeatures(): JSX.Element {
return (
<Section
title="Features"
subtitle="Flexn SDK comes with built-in features making multiplatform development easy"
subtitle="Flexn Create comes with built-in features making multiplatform development easy"
separator
>
<div>
<Module
title="Bootstrap templates"
subtitle="Ready to go template allows you to go from 0 to 100
almost instantly."
websiteUrl="https://sdk.flexn.org/docs/tutorials/advanced/bootstrap"
websiteUrl="https://create.flexn.org/docs/tutorials/advanced/bootstrap"
containerClassName="firstModule"
/>
<Module
title="Powered by ReNative"
subtitle="Flexn SDK adds optimised multiplatform UI on top of ReNative ecosystem allowing you take advantage of full project control,
subtitle="Flexn Create adds optimised multiplatform UI on top of ReNative ecosystem allowing you take advantage of full project control,
scalability features and deployment pipelines out of the box"
websiteUrl="https://renative.org/"
/>
</div>
<div>
<Module
title="Javascript & Typescript"
subtitle="You can use Flexn SDK in both Javascript and Typescript environments"
websiteUrl="https://sdk.flexn.org/docs/introduction"
subtitle="You can use Flexn Create in both Javascript and Typescript environments"
websiteUrl="https://create.flexn.org/docs/introduction"
containerClassName="firstModule"
/>

<Module
title="Community Plugins"
subtitle="The SDK is just the entry point into the vast pool of 3rd party opensource plugins"
websiteUrl="https://sdk.flexn.org/docs/tutorials/basics/quickstart"
websiteUrl="https://create.flexn.org/docs/tutorials/basics/quickstart"
/>
</div>
</Section>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/FlexnUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Section from './Section';
export default function FlexnUsers(): JSX.Element {
return (
<Section
title="Who’s using Flexn SDK?"
title="Who’s using Flexn Create?"
subtitle="There are many variations of passages of Lorem Ipsum available, but the majority
have suffered alteration in some form."
separator
Expand Down
2 changes: 1 addition & 1 deletion docs/src/theme/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ function HomeNavbar(): JSX.Element {
return (
<div className={clsx(styles.header, 'navbar')}>
<a href="/">
<img className={styles.flexnLogo} src="/img/FlexnSDk-logo.svg" height={40} width={40} loading="eager" />
<img className={styles.flexnLogo} src="/img/create-logo.svg" height={40} width={40} loading="eager" />
</a>
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}>
{links.map((link) => (
Expand Down
3 changes: 3 additions & 0 deletions docs/static/img/create-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2ae996d

Please sign in to comment.