From 941cfe0ab22e6bbf0152f11022ca67d870ec4bf7 Mon Sep 17 00:00:00 2001 From: Ashif119 <106506030+Ashif119@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:47:32 +0530 Subject: [PATCH] Fix typo in MaterialApp description --- .../en-US.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questions/what-is-the-difference-between-widgetsapp-and-materialapp-in-flutter/en-US.mdx b/questions/what-is-the-difference-between-widgetsapp-and-materialapp-in-flutter/en-US.mdx index 5c46724..c1dfb01 100644 --- a/questions/what-is-the-difference-between-widgetsapp-and-materialapp-in-flutter/en-US.mdx +++ b/questions/what-is-the-difference-between-widgetsapp-and-materialapp-in-flutter/en-US.mdx @@ -4,4 +4,4 @@ title: What is the difference between `WidgetsApp` and `MaterialApp` in Flutter? `WidgetsApp` is a convenient widget that wraps a number of widgets that are commonly required for an application. It also provides basic navigation. -`MaterialApp` builds an application that uses the mterial design. It is built upon the `WidgetsApp` and contains some material-design specific functionality, such as **AnimatedTheme**. We certainly don't require `MaterialApp` every time when building a Flutter project. `CupertinoApp` gives iOS like look and feel, or we can even define our custom sets of widgets. +`MaterialApp` builds an application that uses the material design. It is built upon the `WidgetsApp` and contains some material-design specific functionality, such as **AnimatedTheme**. We certainly don't require `MaterialApp` every time when building a Flutter project. `CupertinoApp` gives iOS like look and feel, or we can even define our custom sets of widgets.