fix: align terminal more control sizing
This commit is contained in:
parent
12f2b7bb8c
commit
900a6f0567
@ -1050,15 +1050,15 @@ class _TerminalPageState extends ConsumerState<TerminalPage>
|
|||||||
|
|
||||||
Widget _buildMoreControlsButton() {
|
Widget _buildMoreControlsButton() {
|
||||||
return _buildCommandDeckAction(
|
return _buildCommandDeckAction(
|
||||||
OutlinedButton.icon(
|
RepeatableTerminalKeyButton(
|
||||||
key: const Key('terminal_more_controls_button'),
|
key: const Key('terminal_more_controls_button'),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
setState(() {
|
setState(() {
|
||||||
_showExpandedControls = !_showExpandedControls;
|
_showExpandedControls = !_showExpandedControls;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
icon: Icon(_showExpandedControls ? Icons.expand_less : Icons.expand_more),
|
icon: _showExpandedControls ? Icons.expand_less : Icons.expand_more,
|
||||||
label: Text(_showExpandedControls ? 'Less' : 'More'),
|
label: _showExpandedControls ? 'Less' : 'More',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -375,6 +375,26 @@ void main() {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
testWidgets('terminal more controls button matches arrow key size', (
|
||||||
|
tester,
|
||||||
|
) async {
|
||||||
|
await _pumpApp(
|
||||||
|
tester,
|
||||||
|
projectRepository: _FakeProjectRepository(),
|
||||||
|
sessionRepository: _FakeSessionRepository(),
|
||||||
|
);
|
||||||
|
|
||||||
|
await _openProjectTerminal(tester);
|
||||||
|
|
||||||
|
final moreButtonSize = tester.getSize(
|
||||||
|
find.byKey(const Key('terminal_more_controls_button')),
|
||||||
|
);
|
||||||
|
final upKeySize = tester.getSize(find.byKey(const Key('terminal_quick_key_up')));
|
||||||
|
|
||||||
|
expect(moreButtonSize.height, upKeySize.height);
|
||||||
|
expect(moreButtonSize.width, upKeySize.width);
|
||||||
|
});
|
||||||
|
|
||||||
testWidgets('terminal more controls button toggles expanded quick terminal keys', (tester) async {
|
testWidgets('terminal more controls button toggles expanded quick terminal keys', (tester) async {
|
||||||
final transportFactory = _QueuedTerminalSocketTransportFactory();
|
final transportFactory = _QueuedTerminalSocketTransportFactory();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user