quick_actions_ios 1.2.1 copy "quick_actions_ios: ^1.2.1" to clipboard
quick_actions_ios: ^1.2.1 copied to clipboard

PlatformiOS

An implementation for the iOS platform of the Flutter `quick_actions` plugin.

example/lib/main.dart

// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// ignore_for_file: public_member_api_docs

import 'package:flutter/material.dart';
import 'package:quick_actions_ios/quick_actions_ios.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Quick Actions Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key});

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  String shortcut = 'no action set';

  @override
  void initState() {
    super.initState();

    final QuickActionsIos quickActions = QuickActionsIos();
    quickActions.initialize((String shortcutType) {
      setState(() {
        shortcut = shortcutType;
      });
    });

    quickActions
        .setShortcutItems(<ShortcutItem>[
          const ShortcutItem(
            type: 'action_one',
            localizedTitle: 'Action one',
            localizedSubtitle: 'Action one subtitle',
            icon: 'AppIcon',
          ),
          const ShortcutItem(
            type: 'action_two',
            localizedTitle: 'Action two',
            icon: 'ic_launcher',
          ),
        ])
        .then((void _) {
          setState(() {
            if (shortcut == 'no action set') {
              shortcut = 'actions ready';
            }
          });
        });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text(shortcut)),
      body: const Center(
        child: Text(
          'On home screen, long press the app icon to '
          'get Action one or Action two options. Tapping on that action should  '
          'set the toolbar title.',
        ),
      ),
    );
  }
}