Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/lib/InnerSwiper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ class _InnerSwiperState extends State<InnerSwiper> {
),
height: 300.0,
),
new RaisedButton(
new ElevatedButton(
onPressed: () {
setState(() {
autoplayes[index] = true;
});
},
child: new Text("Start autoplay"),
),
new RaisedButton(
new ElevatedButton(
onPressed: () {
setState(() {
autoplayes[index] = false;
Expand Down
6 changes: 3 additions & 3 deletions example/lib/src/ExampleCustom.dart
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ class _ExampleCustomState extends State<ExampleCustom> {
new Text("Index:$_currentIndex"),
new Row(
children: <Widget>[
new RaisedButton(
new ElevatedButton(
onPressed: () {
_controller.previous(animation: true);
},
child: new Text("Prev"),
),
new RaisedButton(
new ElevatedButton(
onPressed: () {
_controller.next(animation: true);
},
Expand All @@ -170,7 +170,7 @@ class _ExampleCustomState extends State<ExampleCustom> {
child: new TextField(
controller: numberController,
)),
new RaisedButton(
new ElevatedButton(
onPressed: () {
var text = numberController.text;
setState(() {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/src/forms/form_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class _FormSelectState extends State<FormSelect> {
),
),
new Center(
child: new RaisedButton(
child: new ElevatedButton(
onPressed: () {
if (_selectedIndex >= 0) {
widget
Expand Down