Skip to content

Commit a3b7f4f

Browse files
committed
adding stuff
1 parent 8765419 commit a3b7f4f

12 files changed

+19
-143
lines changed

blog/2019-05-28-first-blog-post.md

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

blog/2019-05-29-long-blog-post.md

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

blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 20 deletions
This file was deleted.
Binary file not shown.

blog/2021-08-26-welcome/index.md

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

blog/authors.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
1-
endi:
2-
name: Endilie Yacop Sucipto
3-
title: Maintainer of Docusaurus
4-
url: https://github.com/endiliey
5-
image_url: https://github.com/endiliey.png
6-
7-
yangshun:
8-
name: Yangshun Tay
9-
title: Front End Engineer @ Facebook
10-
url: https://github.com/yangshun
11-
image_url: https://github.com/yangshun.png
12-
13-
slorber:
14-
name: Sébastien Lorber
15-
title: Docusaurus maintainer
16-
url: https://sebastienlorber.com
1+
# Support team authors
2+
barry:
3+
name: Barry
4+
title: FlutterFlow Support Team
5+
# url: https://sebastienlorber.com
176
image_url: https://github.com/slorber.png

blog/overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: FF Blog Overview
3+
sidebar_position: 1
4+
---
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
---
22
slug: push-notifications
33
title: Push Notification Issues
4-
authors:
5-
- name: Barry
6-
title: FlutterFlow Support Team
7-
# url: https://github.com/JoelMarcey
8-
image_url: https://github.com/JoelMarcey.png
4+
authors: barry
95
tags: []
6+
toc_max_heading_level: 5
107
---
118

129
Push notifications play a vital role in mobile apps, letting you connect with your audience and update them on key developments. But, there are instances when push notifications fail to deliver. In this guide, we'll explore some typical problems that hinder push notifications in FlutterFlow and offer detailed instructions on how to fix them.
1310

1411

15-
![Alt text](image.png)
12+
![Firebase Console](./push-notification-assets/push-notifications-ff.png)
1613

1714
:::tip Using CodeMagic? [Skip ahead!](https://mdxjs.com/playground/)
1815

@@ -23,7 +20,7 @@ Push notifications play a vital role in mobile apps, letting you connect with yo
2320
#### 1. Ensure your subscription status hasn't changed.
2421
Head to the [Firebase Console](https://console.firebase.google.com/) and select Project Settings > Usage & Billing > Details & Settings.
2522

26-
![Alt text](image-1.png)
23+
![Firebase Console](./push-notification-assets/firebase-console.png)
2724

2825
If you see Spark listed, you will need to select Modify Plan and upgrade to a Blaze Plan.
2926

@@ -32,3 +29,4 @@ If you see Spark listed, you will need to select Modify Plan and upgrade to a Bl
3229
#### 2. Ensure your subscription status hasn't changed.
3330

3431

32+
...

docusaurus.config.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ const config: Config = {
3535
// },
3636
blog: {
3737
showReadingTime: true,
38+
blogSidebarTitle: 'FlutterFlow Blog',
39+
blogSidebarCount: 'ALL'
3840
},
41+
3942
theme: {
4043
customCss: './src/css/custom.css',
4144
},
@@ -72,14 +75,8 @@ const config: Config = {
7275
position: 'left',
7376
label: 'Changelog',
7477
},
75-
// {
76-
// type: 'doc',
77-
// docId: 'documentation/', // Adjust to the first document in "Changelog"
78-
// position: 'left',
79-
// label: 'Docs',
80-
// },
8178
{
82-
to: '/blog',
79+
to: '/blog/overview',
8380
label: 'Blog',
8481
position: 'left'
8582
},

sidebars.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
22

3-
/**
4-
* Creating a sidebar enables you to:
5-
- create an ordered group of docs
6-
- render a sidebar for each doc of that group
7-
- provide next/previous navigation
83

9-
The sidebars can be generated from the filesystem, or explicitly defined here.
10-
11-
Create as many sidebars as you want.
12-
*/
134
const sidebars: SidebarsConfig = {
14-
// By default, Docusaurus generates a sidebar from the docs folder structure
15-
// docsSidebar: [{type: 'autogenerated', dirName: ''}], // Example configuration
16-
// introSidebar: [{type: 'autogenerated', dirName: 'intro'}], // Example configuration
175
troubleshootingSidebar: [{type: 'autogenerated', dirName: 'troubleshooting'}], // Adjust `dirName` as needed
6+
changelogSidebar: [{type: 'autogenerated', dirName: 'changelog'}], // Adjust `dirName` as needed
187
docsSidebar : [
198
{
209
type: 'category',

0 commit comments

Comments
 (0)