
Create Models (1)
April 9, 2025About 2 min
Create Models (1) 관련
How to Build a Multilingual Social Recipe Application with Flutter and Strapi
Hey there! In this project, you will build a multilingual social recipe application using Flutter and Strapi. Flutter is an open-source UI software development kit created by Google. It allows you to build beautiful and highly interactive user interf...
How to Build a Multilingual Social Recipe Application with Flutter and Strapi
Hey there! In this project, you will build a multilingual social recipe application using Flutter and Strapi. Flutter is an open-source UI software development kit created by Google. It allows you to build beautiful and highly interactive user interf...
Once you have set up a Strapi project with this quick guide, create two models, Recipe and RecipeRequest, in the Strapi admin panel.
A recipe typically has the following elements:
- Title:
text
which represents the title of the recipe - Ingredients:
text
which represent the of ingredients of the recipe - Likes:
int
which represent the number of likes - Author:
relation
which represent the author of the recipe - Comments:
relation
which represent the list of comments of a specific recipe - Steps:
rich text
which represents the main content of the recipe - Description:
rich text
which represents a description of what the recipe is like - Comment Count:
int
which represents the number of comment a recipe has - Cover Image:
media
which represents the cover image of the recipe

Make sure to enable internationalization for Recipe Content Type when you create it:

A recipe request typically has:
- Title, which is
text
that represents the title of the request - Description, which is
rich text
that represents the content of the request

A comment typical has:
- Author, which is a
relation
that represents the author of the comment - Content, which is
text
that represents the content of the comments - Date, which is a
date
that represents the published date of the comment

The user will also have 4 new fields:
