mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
80 lines
2.3 KiB
Dart
80 lines
2.3 KiB
Dart
// Copyright 2014 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.
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// Flutter code sample for [CupertinoContextMenu].
|
|
|
|
void main() => runApp(const ContextMenuApp());
|
|
|
|
class ContextMenuApp extends StatelessWidget {
|
|
const ContextMenuApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const CupertinoApp(
|
|
theme: CupertinoThemeData(brightness: Brightness.light),
|
|
home: ContextMenuExample(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ContextMenuExample extends StatelessWidget {
|
|
const ContextMenuExample({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CupertinoPageScaffold(
|
|
navigationBar: const CupertinoNavigationBar(
|
|
middle: Text('CupertinoContextMenu Sample'),
|
|
),
|
|
child: Center(
|
|
child: SizedBox(
|
|
width: 100,
|
|
height: 100,
|
|
child: CupertinoContextMenu(
|
|
actions: <Widget>[
|
|
CupertinoContextMenuAction(
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
isDefaultAction: true,
|
|
trailingIcon: CupertinoIcons.doc_on_clipboard_fill,
|
|
child: const Text('Copy'),
|
|
),
|
|
CupertinoContextMenuAction(
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
trailingIcon: CupertinoIcons.share,
|
|
child: const Text('Share'),
|
|
),
|
|
CupertinoContextMenuAction(
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
trailingIcon: CupertinoIcons.heart,
|
|
child: const Text('Favorite'),
|
|
),
|
|
CupertinoContextMenuAction(
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
isDestructiveAction: true,
|
|
trailingIcon: CupertinoIcons.delete,
|
|
child: const Text('Delete'),
|
|
),
|
|
],
|
|
child: const ColoredBox(
|
|
color: CupertinoColors.systemYellow,
|
|
child: FlutterLogo(size: 500.0),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|