Skip to content

Commit 01bb03b

Browse files
committed
Modifying intro and page name
1 parent f30218c commit 01bb03b

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

docs/intro/build-your-first-app.md renamed to docs/intro/quickstart.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
---
2-
slug: build-your-first-app
3-
title: Build your first app
2+
slug: quickstart
3+
title: Quick Start Guide
44
tags: []
55
---
66

7-
# **Build your first app**
7+
# **Quick Start Guide**
88

9-
This guide will walk you through creating and running your first FlutterFlow app. In this app, users can adjust the quantity of a product before adding it to their shopping cart.
9+
Welcome to the FlutterFlow Quickstart Guide! This guide is tailored for those eager to dive right into building their first FlutterFlow application. Here, you'll build a screen that lets users adjust the quantity of a product before adding it to their shopping cart.
1010

11-
It’s very straightforward yet introduces you to some fundamental concepts in app development. Here's how it looks when completed:
11+
This quickstart is designed to be straightforward and accessible, introducing you to basic FlutterFlow concepts quickly. For those seeking a deeper understanding of FlutterFlow's capabilities, we recommend reading through the FlutterFlow concepts pages.
12+
<!-- TO DO: add links to resource section later on -->
1213

14+
Below is a preview of what your app will look like once completed:
1315
<iframe src="https://demo.arcade.software/YXXxpSfeOUgkt9JAOxUL?embed&show_copy_link=true" title="Update product quantity" frameborder="0" loading="lazy" webkitallowfullscreen mozallowfullscreen allowfullscreen allow="clipboard-write" width="100%" height="800"></iframe>
1416

1517
> **What you'll learn**
@@ -31,11 +33,11 @@ The steps to build the app are as follows:
3133

3234
To kick off your project, the first step is to [create a new project](#). However, to make things easier, we've already created a starter app for you. Simply open [this link](https://app.flutterflow.io/project/f-f-quick-start-app-umu392), click the '**Clone**' button, and the project will be instantly added to your account.
3335

34-
![clone-project.png](../../static/img/clone-project.png)
36+
<img src="../../static/img/clone-project.png" alt="clone-project.png" />
3537

3638
After cloning the project, you’ll see a page with product images and description and you’ll add a feature that allows users to update the product quantity.
3739

38-
![zero-to-final.png](../../static/img/zero-to-final.png)
40+
<img src="../../static/img/zero-to-final.png" alt="zero-to-final.png" />
3941

4042
## 2. Building UI {#build-ui}
4143

sidebars.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const sidebars: SidebarsConfig = {
1010
label: 'Getting Started',
1111
collapsed: false,
1212
items: ['index', {type: 'category', label: "Before You Begin", items: [
13-
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture'
14-
]},'intro/build-your-first-app'],
13+
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture','intro/quickstart'
14+
]}],
1515
}
1616
]
1717
};

src/components/InfoCard/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import React from 'react';
32
import styles from './index.module.css';
43

0 commit comments

Comments
 (0)