Skip to content

Commit 39f0d70

Browse files
committed
choose-account [nfc]: Fix indentation
This confused me for a bit just now about the structure of this code.
1 parent 9e42f26 commit 39f0d70

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

lib/widgets/app.dart

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -258,18 +258,18 @@ class ChooseAccountPage extends StatelessWidget {
258258
},
259259
child: Text(zulipLocalizations.chooseAccountPageLogOutButton)),
260260
],
261-
builder: (BuildContext context, MenuController controller, Widget? child) {
262-
return IconButton(
263-
tooltip: materialLocalizations.showMenuTooltip, // "Show menu"
264-
onPressed: () {
265-
if (controller.isOpen) {
266-
controller.close();
267-
} else {
268-
controller.open();
269-
}
270-
},
271-
icon: Icon(Icons.adaptive.more, color: designVariables.icon));
272-
}),
261+
builder: (BuildContext context, MenuController controller, Widget? child) {
262+
return IconButton(
263+
tooltip: materialLocalizations.showMenuTooltip, // "Show menu"
264+
onPressed: () {
265+
if (controller.isOpen) {
266+
controller.close();
267+
} else {
268+
controller.open();
269+
}
270+
},
271+
icon: Icon(Icons.adaptive.more, color: designVariables.icon));
272+
}),
273273
// The default trailing padding with M3 is 24px. Decrease by 12 because
274274
// IconButton (the "…" button) comes with 12px padding on all sides.
275275
contentPadding: const EdgeInsetsDirectional.only(start: 16, end: 12),

0 commit comments

Comments
 (0)