$ xcrun simctl list --json
$ xcrun simctl delete unavailable
<?php | |
// Server file | |
class PushNotifications { | |
// (Android)API access key from Google API's Console. | |
private static $API_ACCESS_KEY = 'AIzaSyDG3fYAj1uW7VB-wejaMJyJXiO5JagAsYI'; | |
// (iOS) Private key's passphrase. | |
private static $passphrase = 'joashp'; | |
// (Windows Phone 8) The name of our push channel. | |
private static $channelName = "joashp"; |
class ImprovedDraggableScrollableSheet extends StatefulWidget { | |
const ImprovedDraggableScrollableSheet({Key? key}) : super(key: key); | |
@override | |
State<ImprovedDraggableScrollableSheet> createState() => _ImprovedDraggableScrollableSheetState(); | |
} | |
class _ImprovedDraggableScrollableSheetState extends State<ImprovedDraggableScrollableSheet> { | |
final GlobalKey commentsHeaderKey = GlobalKey(); |