CupertinoActionSheet In Flutter
All mobile applications delivering some common characteristic. One quite obvious behavior is to provide users to make decisions or choose options, while needed. To achieve this we’ve some pre-built functionality.
Hello Guys, In this tutorial, we’ll learn about how to implement CupertinoActionSheet in Flutter.
Table of Contents :
Introduction
Setup
Code Implementation
Code File
Conclusion
Introduction:
Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Using Flutter we can build
If you want to explore more about Flutter, please visit Flutter’s official website to get more information.
CupertinoActionSheet
According to flutter doc, An action sheet is a specific style of alert that presents the user with a set of two or more choices related to the current context. To build an ios-style app to present the list option we’ll use CupertinoActionSheet.
Setup:
First of all, we have to import the Cupertino package into our dart file.
import 'package:flutter/cupertino.dart;
CupertinoActionSheet is an ios-themed widget that has action sheets design specifications. An action sheet can have a title, an additional message, and a list of actions. To display action buttons that look like standard iOS action sheet buttons, provide CupertinoActionSheetActions for the actions given to this action sheet.