Skip to content

Commit

Permalink
added countdown widget to countdownscreen.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
githumbi committed Dec 23, 2019
1 parent 1eb490d commit 7e69dbd
Showing 1 changed file with 51 additions and 12 deletions.
63 changes: 51 additions & 12 deletions lib/countDownScreen.dart
Original file line number Diff line number Diff line change
@@ -1,27 +1,66 @@
import 'package:flutter/material.dart';
import 'package:slide_countdown_clock/slide_countdown_clock.dart';

class CountDownScreen extends StatefulWidget {
class CountDownScreen extends StatelessWidget {
@override
_CountDownScreenState createState() => _CountDownScreenState();
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}

class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);

final String title;

@override
_MyHomePageState createState() => _MyHomePageState();
}

class _CountDownScreenState extends State<CountDownScreen> {
class _MyHomePageState extends State<MyHomePage> {
GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey();
Duration _duration = Duration(seconds: 1000000);

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Column(
return Scaffold(
key: _scaffoldKey,
appBar: AppBar(title: Text(widget.title)),
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Contdown page'),
RaisedButton(
onPressed: () {
Navigator.pop(context);
_buildSpace(),
Text('Slide direction Down'),
SlideCountdownClock(
duration: _duration,
slideDirection: SlideDirection.Down,
separator: ":",
textStyle: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
),
onDone: () {
_scaffoldKey.currentState
.showSnackBar(SnackBar(content: Text('Clock 1 finished')));
},
child: Text('go back'),
)
),
_buildSpace(),
],
),
),
);
}

Widget _buildSpace() {
return SizedBox(height: 50);
}
}

0 comments on commit 7e69dbd

Please sign in to comment.