Skip to content

Instantly share code, notes, and snippets.

View sprintal's full-sized avatar
🍉

Kang sprintal

🍉
View GitHub Profile
@slightfoot
slightfoot / stepper.dart
Created May 20, 2018 17:38
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;