### Steps to reproduce 1. Run the code sample. 2. Observe the DropdownMenu width ### Expected results The label text is fully visible: <img width="225" height="63" alt="Image" src="https://github.com/user-attachments/assets/d4223e56-2b3f-4e12-893a-284ceb3b8ea4" /> ### Actual results The label text is not fully visibly: <img width="225" height="63" alt="Image" src="https://github.com/user-attachments/assets/47dbec7d-c59c-4379-8f22-792c844f6ac4" /> ### Code sample <details open><summary>Code sample</summary> ```dart import 'package:flutter/material.dart'; void main() { runApp(const ReproApp()); } class ReproApp extends StatelessWidget { const ReproApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp(title: 'DropdownMenu.decorationBuilder width', home: HomePage()); } } class HomePage extends StatelessWidget { const HomePage({super.key}); @override Widget build(BuildContext context) { return Material( child: Center( child: DropdownMenu<String>( dropdownMenuEntries: const [ DropdownMenuEntry(value: "value1", label: "Option 1"), DropdownMenuEntry(value: "value2", label: "Option 2"), DropdownMenuEntry(value: "value3", label: "Option 3"), ], textInputAction: TextInputAction.next, decorationBuilder: (context, controller) { return const InputDecoration(labelText: 'DropdownMenu', border: OutlineInputBorder()); }, ), ), ); } } ``` </details> ### Screenshots or Video _No response_ ### Logs ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console Flutter (Channel master, 3.39.0-1.0.pre-93, on Ubuntu 24.04.2 LTS 6.8.0-87-generic, locale fr_FR.UTF-8) ``` </details>
Steps to reproduce
Expected results
The label text is fully visible:
Actual results
The label text is not fully visibly:
Code sample
Code sample
Screenshots or Video
No response
Logs
Flutter Doctor output
Doctor output
Flutter (Channel master, 3.39.0-1.0.pre-93, on Ubuntu 24.04.2 LTS 6.8.0-87-generic, locale fr_FR.UTF-8)