Skip to content

Commit 2d36dd0

Browse files
committed
Added intro page, css classes for video embeds
1 parent f991e51 commit 2d36dd0

File tree

3 files changed

+69
-4
lines changed

3 files changed

+69
-4
lines changed

docs/docs/Introduction/intro.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
description: Introduction to FlutterFlow.
3+
---
4+
5+
# Introduction
6+
7+
Welcome To FlutterFlow Docs!
8+
9+
## What is FlutterFlow?
10+
11+
FlutterFlow is a low-code builder for developing native mobile applications. You can use our simple drag-and-drop interface to build your app 10x faster than traditional development.
12+
13+
<div class="video-container"><iframe src="https://www.youtube.com/embed/GpXjU-ieAKU?si=moIEUUGry24CdSJN" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
14+
15+
## New to FlutterFlow?
16+
17+
The [Getting Started](/getting-started/dashboard) section will give you a quick overview of the FlutterFlow interface and guide you on building your first app with FlutterFlow.
18+
19+
If there are any topics you'd like us to add to our documentation, please share your feedback [here](https://flutterflow.typeform.com/to/hxg5nxbo).
20+
21+
## Create an account
22+
23+
Create your free account to get started with FlutterFlow. After you've set up your account, you'll be able to create as many projects as you like.
24+
25+
You can [sign up](https://app.flutterflow.io/create-account) via Apple, Google, or Github.
26+
27+
## System Requirements
28+
29+
FlutterFlow is a web app that can be used from your browser. Please review these system requirements for the best experience:
30+
31+
- Building on any laptop or desktop is currently supported.
32+
- Using a screen that is at least **1280 x 1084** is recommended.
33+
- FlutterFlow works best on **Google Chrome** (if you are experiencing any issues, we recommend switching to Chrome).
34+
- [Allow pop-up and redirects and ClipBoard](/troubleshooting/miscellaneous#i-cant-copy-paste-widgets.) from app.flutterflow.io.
35+
36+
## Need Help?
37+
38+
To contact us directly, email [[email protected]](mailto:[email protected]). Thank you for being a part of the FlutterFlow journey!
39+
40+
[Community Forum](https://community.flutterflow.io/)
41+
42+
[YouTube](https://www.youtube.com/channel/UC5LueiosDVInA6yXE_38i9Q)
43+
44+
[FAQs](https://docs.flutterflow.io/troubleshooting/basic-troubleshooting-guide)
45+
46+
[Blog](https://blog.flutterflow.io/)
47+
48+
---
49+
50+
[Next: Dashboard](/getting-started/dashboard)
51+
52+
Last updated 6 days ago

docusaurus.config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,13 @@ const config: Config = {
3737
sidebarPath: './sidebars.ts',
3838
// Please change this to your repo.
3939
// Remove this to remove the "edit this page" links.
40-
editUrl:
41-
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
40+
editUrl: 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
4241
},
4342
blog: {
4443
showReadingTime: true,
4544
// Please change this to your repo.
4645
// Remove this to remove the "edit this page" links.
47-
editUrl:
48-
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
46+
editUrl:'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
4947
},
5048
theme: {
5149
customCss: './src/css/custom.css',

src/css/custom.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,18 @@
2828
--ifm-color-primary-lightest: #4fddbf;
2929
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
3030
}
31+
32+
.video-container {
33+
position: relative;
34+
width: 100%;
35+
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
36+
height: 0;
37+
}
38+
39+
.video-container iframe {
40+
position: absolute;
41+
top: 0;
42+
left: 0;
43+
width: 100%;
44+
height: 100%;
45+
}

0 commit comments

Comments
 (0)