@@ -59,12 +59,12 @@ class MyHomePage extends StatelessWidget {
5959 child: Column (
6060 mainAxisAlignment: MainAxisAlignment .spaceEvenly,
6161 children: < Widget > [
62- RaisedButton (
62+ ElevatedButton (
6363 child: const Text (
6464 'Tap here to set an alarm\n on weekdays at 9:30pm.' ),
6565 onPressed: _createAlarm,
6666 ),
67- RaisedButton (
67+ ElevatedButton (
6868 child: const Text ('Tap here to test explicit intents.' ),
6969 onPressed: () => _openExplicitIntentsView (context)),
7070 ],
@@ -166,40 +166,40 @@ class ExplicitIntentsWidget extends StatelessWidget {
166166 child: Column (
167167 mainAxisAlignment: MainAxisAlignment .spaceEvenly,
168168 children: < Widget > [
169- RaisedButton (
169+ ElevatedButton (
170170 child: const Text (
171171 'Tap here to display panorama\n imagery in Google Street View.' ),
172172 onPressed: _openGoogleMapsStreetView,
173173 ),
174- RaisedButton (
174+ ElevatedButton (
175175 child: const Text ('Tap here to display\n a map in Google Maps.' ),
176176 onPressed: _displayMapInGoogleMaps,
177177 ),
178- RaisedButton (
178+ ElevatedButton (
179179 child: const Text (
180180 'Tap here to launch turn-by-turn\n navigation in Google Maps.' ),
181181 onPressed: _launchTurnByTurnNavigationInGoogleMaps,
182182 ),
183- RaisedButton (
183+ ElevatedButton (
184184 child: const Text ('Tap here to open link in Google Chrome.' ),
185185 onPressed: _openLinkInGoogleChrome,
186186 ),
187- RaisedButton (
187+ ElevatedButton (
188188 child: const Text ('Tap here to start activity in new task.' ),
189189 onPressed: _startActivityInNewTask,
190190 ),
191- RaisedButton (
191+ ElevatedButton (
192192 child: const Text (
193193 'Tap here to test explicit intent fallback to implicit.' ),
194194 onPressed: _testExplicitIntentFallback,
195195 ),
196- RaisedButton (
196+ ElevatedButton (
197197 child: const Text (
198198 'Tap here to open Location Settings Configuration' ,
199199 ),
200200 onPressed: _openLocationSettingsConfiguration,
201201 ),
202- RaisedButton (
202+ ElevatedButton (
203203 child: const Text (
204204 'Tap here to open Application Details' ,
205205 ),
0 commit comments