-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projecta: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityplatform-iosiOS applications specificallyiOS applications specificallyteam-text-inputOwned by Text Input teamOwned by Text Input teamtriaged-text-inputTriaged by Text Input teamTriaged by Text Input team
Description
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
Metadata
Metadata
Assignees
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projecta: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityplatform-iosiOS applications specificallyiOS applications specificallyteam-text-inputOwned by Text Input teamOwned by Text Input teamtriaged-text-inputTriaged by Text Input teamTriaged by Text Input team