@@ -111,8 +111,7 @@ class _LaunchAtLoginExamplePageState extends State<LaunchAtLoginExamplePage> {
111111 return ;
112112 }
113113 final args = _argumentsController.text.trim ();
114- final argsList =
115- args.isNotEmpty ? args.split (RegExp (r'\s+' )) : < String > [];
114+ final argsList = args.isNotEmpty ? args.split (RegExp (r'\s+' )) : < String > [];
116115 setState (() => _isBusy = true );
117116 final success = _launchAtLogin.setProgram (path, argsList);
118117 setState (() => _isBusy = false );
@@ -154,10 +153,7 @@ class _LaunchAtLoginExamplePageState extends State<LaunchAtLoginExamplePage> {
154153 body: ListView (
155154 padding: const EdgeInsets .all (20 ),
156155 children: [
157- Text (
158- 'Manage launch-at-login' ,
159- style: theme.textTheme.headlineSmall,
160- ),
156+ Text ('Manage launch-at-login' , style: theme.textTheme.headlineSmall),
161157 const SizedBox (height: 8 ),
162158 Text (
163159 'Use the LaunchAtLogin API to register your app to launch automatically at user login.' ,
@@ -255,10 +251,7 @@ class _LaunchAtLoginExamplePageState extends State<LaunchAtLoginExamplePage> {
255251 child: Column (
256252 crossAxisAlignment: CrossAxisAlignment .start,
257253 children: [
258- Text (
259- 'Display Name' ,
260- style: theme.textTheme.titleMedium,
261- ),
254+ Text ('Display Name' , style: theme.textTheme.titleMedium),
262255 const SizedBox (height: 8 ),
263256 TextField (
264257 controller: _displayNameController,
0 commit comments