@@ -59,12 +59,12 @@ class MyHomePage extends StatelessWidget {
59
59
child: Column (
60
60
mainAxisAlignment: MainAxisAlignment .spaceEvenly,
61
61
children: < Widget > [
62
- RaisedButton (
62
+ ElevatedButton (
63
63
child: const Text (
64
64
'Tap here to set an alarm\n on weekdays at 9:30pm.' ),
65
65
onPressed: _createAlarm,
66
66
),
67
- RaisedButton (
67
+ ElevatedButton (
68
68
child: const Text ('Tap here to test explicit intents.' ),
69
69
onPressed: () => _openExplicitIntentsView (context)),
70
70
],
@@ -166,40 +166,40 @@ class ExplicitIntentsWidget extends StatelessWidget {
166
166
child: Column (
167
167
mainAxisAlignment: MainAxisAlignment .spaceEvenly,
168
168
children: < Widget > [
169
- RaisedButton (
169
+ ElevatedButton (
170
170
child: const Text (
171
171
'Tap here to display panorama\n imagery in Google Street View.' ),
172
172
onPressed: _openGoogleMapsStreetView,
173
173
),
174
- RaisedButton (
174
+ ElevatedButton (
175
175
child: const Text ('Tap here to display\n a map in Google Maps.' ),
176
176
onPressed: _displayMapInGoogleMaps,
177
177
),
178
- RaisedButton (
178
+ ElevatedButton (
179
179
child: const Text (
180
180
'Tap here to launch turn-by-turn\n navigation in Google Maps.' ),
181
181
onPressed: _launchTurnByTurnNavigationInGoogleMaps,
182
182
),
183
- RaisedButton (
183
+ ElevatedButton (
184
184
child: const Text ('Tap here to open link in Google Chrome.' ),
185
185
onPressed: _openLinkInGoogleChrome,
186
186
),
187
- RaisedButton (
187
+ ElevatedButton (
188
188
child: const Text ('Tap here to start activity in new task.' ),
189
189
onPressed: _startActivityInNewTask,
190
190
),
191
- RaisedButton (
191
+ ElevatedButton (
192
192
child: const Text (
193
193
'Tap here to test explicit intent fallback to implicit.' ),
194
194
onPressed: _testExplicitIntentFallback,
195
195
),
196
- RaisedButton (
196
+ ElevatedButton (
197
197
child: const Text (
198
198
'Tap here to open Location Settings Configuration' ,
199
199
),
200
200
onPressed: _openLocationSettingsConfiguration,
201
201
),
202
- RaisedButton (
202
+ ElevatedButton (
203
203
child: const Text (
204
204
'Tap here to open Application Details' ,
205
205
),
0 commit comments