Steps to reproduce
- Open a Flutter iOS app with a text field that contains text
- Select text to show the iOS system context menu
Expected results
A TextField's context menu has the "Share" button when text is selected.
Tapping the "Share" button should show the iOS's share bottom sheet:
Actual results
A TextField's context menu does not have the "Share" button when text is selected.
Code sample
Code sample
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
home: TextFieldPage(),
),
);
}
class TextFieldPage extends StatelessWidget {
const TextFieldPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Padding(
padding: EdgeInsets.all(64.0),
child: TextField(),
),
),
);
}
}
Screenshots or Video
No response
Logs
N/A
Flutter Doctor output
N/A
Steps to reproduce
Expected results
A
TextField's context menu has the "Share" button when text is selected.Tapping the "Share" button should show the iOS's share bottom sheet:
Actual results
A
TextField's context menu does not have the "Share" button when text is selected.Code sample
Code sample
Screenshots or Video
No response
Logs
N/A
Flutter Doctor output
N/A