Code Explained - The About Page :
import 'package:flutter/material.dart';
import './landing_page.dart';
import 'package:flutter/material.dart';
import './quiz_page.dart';
import './missedquestions_page.dart';
import './list.dart';
import './testslist.dart';
import './page.dart';
// importnant fonts style https://docs.flutter.io/flutter/painting/TextStyle-class.html
// go to Quizlet stopped at 25th term for ropper v simmons -> can create another set so taht 25 to ~25 ratio
class About extends StatelessWidget {
About();
@override
Widget build(BuildContext context) {
return new Material(
color: Colors.deepPurpleAccent,
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text("Spreading the Joy of Learning", style: new TextStyle(color: Colors.white, fontStyle: FontStyle.italic, fontSize: 25.0),),
new Text(" "),
new Text(" "),
Image.network(
'https://www.askthecat.org/uploads/6/2/4/4/62443641/65-ask-the-cat_13.png',
),
new Text("\naskthecat.org", style: new TextStyle(color: Colors.white, fontSize: 25.0),),
new IconButton(
icon: new Icon(Icons.arrow_back),
color: Colors.white,
iconSize: 30.0,
onPressed: () => Navigator.of(context).pushAndRemoveUntil(new MaterialPageRoute(builder: (BuildContext context) => new Page()), (Route route) => route == null)
),
],
)
);
}
}
Code Explained - The About Page :
import 'package:flutter/material.dart';
import './landing_page.dart';
import 'package:flutter/material.dart';
import './quiz_page.dart';
import './missedquestions_page.dart';
import './list.dart';
import './testslist.dart';
import './page.dart';
// importnant fonts style https://docs.flutter.io/flutter/painting/TextStyle-class.html
// go to Quizlet stopped at 25th term for ropper v simmons -> can create another set so taht 25 to ~25 ratio
class About extends StatelessWidget {
About();
@override
Widget build(BuildContext context) {
return new Material(
color: Colors.deepPurpleAccent,
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text("Spreading the Joy of Learning", style: new TextStyle(color: Colors.white, fontStyle: FontStyle.italic, fontSize: 25.0),),
new Text(" "),
new Text(" "),
Image.network(
'https://www.askthecat.org/uploads/6/2/4/4/62443641/65-ask-the-cat_13.png',
),
new Text("\naskthecat.org", style: new TextStyle(color: Colors.white, fontSize: 25.0),),
new IconButton(
icon: new Icon(Icons.arrow_back),
color: Colors.white,
iconSize: 30.0,
onPressed: () => Navigator.of(context).pushAndRemoveUntil(new MaterialPageRoute(builder: (BuildContext context) => new Page()), (Route route) => route == null)
),
],
)
);
}
}