Skip to content

Instantly share code, notes, and snippets.

@ftvs
ftvs / stepper.dart
Created February 3, 2020 07:58 — forked from slightfoot/stepper.dart
Flutter Stepper Example
import 'package:flutter/material.dart';
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
int _currentStep = 0;