How to Create This Type of Two Button in the End of CupertinoActionSheet?

Issue showCupertinoModalPopup( context: context, builder: (context) { return CupertinoActionSheet( actions: [], title: Text("Sampark Tag"), message: CupertinoSearchTextField(), cancelButton: Row( mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Container( margin: EdgeInsets.symmetric(horizontal: 10), child: CupertinoActionSheetAction( onPressed: () {}, child: Text("Cancel")), ), CupertinoActionSheetAction( onPressed: () {}, child: Text("Cancel"))

Continue reading