parent
70e4582df9
commit
06bd2407b8
3 changed files with 32 additions and 4 deletions
@ -1,7 +1,21 @@ |
||||
# Material widgets |
||||
# Material Widgets |
||||
|
||||
Visual, behavioral, and motion-rich widgets implementing the Material Design guidelines. |
||||
Material Widgets are a set of Flutter widgets that implement Material Design, Google's visual language for design. They are designed to provide a consistent look and feel on both Android and iOS devices. Some common Material Widgets include: |
||||
|
||||
- RaisedButton |
||||
- Scaffold |
||||
- AppBar |
||||
- TextField |
||||
- Drawer |
||||
- SnackBar |
||||
- BottomNavigationBar |
||||
- IconButton |
||||
|
||||
These widgets are commonly used in Flutter apps to provide a familiar look and feel that follows Material Design guidelines. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [Material Components widgets](https://docs.flutter.dev/development/ui/widgets/material) |
||||
- [Flutter – Material Design](https://www.geeksforgeeks.org/flutter-material-design/) |
||||
- [Widget catalog in Flutter](https://docs.flutter.dev/development/ui/widgets) |
||||
- [Material Designs Guidlines](https://m2.material.io/design/guidelines-overview) |
@ -1,7 +1,9 @@ |
||||
# Cupertino widgets |
||||
|
||||
Beautiful and high-fidelity widgets for current iOS design language. |
||||
Cupertino widgets are a set of Flutter widgets that mimic the look and feel of Apple's iOS user interface. They are designed to provide a consistent look and feel on both iOS and Android devices, and include widgets such as CupertinoButton, CupertinoAlertDialog, and CupertinoSlider. These widgets are useful for building cross-platform apps that need to conform to the iOS design aesthetic.s |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [Cupertino (iOS-style) widgets](https://docs.flutter.dev/development/ui/widgets/cupertino) |
||||
- [Flutter Cupertino Tutorial](https://blog.logrocket.com/flutter-cupertino-tutorial-build-ios-apps-native/) |
||||
- [Flutter Cupertino Widgets](https://www.youtube.com/watch?v=L-TY_5NZ7z4) |
@ -1 +1,13 @@ |
||||
# Styled widgets |
||||
# Styled Widgets |
||||
|
||||
Styled Widgets are Flutter widgets that are decorated with custom styles, such as colors, fonts, and shapes. They can be created by wrapping existing widgets with other widgets, such as Container, Theme, or BoxDecoration. For example: |
||||
|
||||
- Container widget can be used to set a fixed width, height, padding, and margin. |
||||
- Theme widget can be used to specify a color scheme and typography for an entire app or a section of it. |
||||
- BoxDecoration can be used to add a border, background color, and a border radius to a widget. |
||||
- Styled Widgets allow developers to easily customize the look and feel of their Flutter app and create a consistent visual style. |
||||
|
||||
Learn more from the following links: |
||||
|
||||
- [Styling widgets in Flutter](https://docs.flutter.dev/development/ui/widgets/styling) |
||||
- [Style Your Flutter Widgets](https://www.youtube.com/watch?v=kcq8AbVyMbk) |
Loading…
Reference in new issue