Code Explained - The Help Pages:
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';
import './termslist.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 HelpTerms extends StatelessWidget {
HelpTerms();
@override
Widget build(BuildContext context) {
return new Material(
color: Colors.deepOrange,
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Image.network(
'https://www.askthecat.org/uploads/6/2/4/4/62443641/65-ask-the-cat_13.png',
),
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 TermsList()), (Route route) => route == null)
),
new Text("This is the terms list, where you can study terms from the six units provided. Once you select a unit, press one of the expansion tiles to see the definitions of the term revealed. Press again to hide the definition and see only the term. Once you feel comfortable with a unit press the back button to study other units.", style: new TextStyle(color: Colors.white, fontStyle: FontStyle.italic, fontSize: 25.0),),
new Text(" "),
new Text(" "),
],
)
);
}
}
Code Explained - The Help Pages:
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';
import './termslist.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 HelpTerms extends StatelessWidget {
HelpTerms();
@override
Widget build(BuildContext context) {
return new Material(
color: Colors.deepOrange,
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Image.network(
'https://www.askthecat.org/uploads/6/2/4/4/62443641/65-ask-the-cat_13.png',
),
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 TermsList()), (Route route) => route == null)
),
new Text("This is the terms list, where you can study terms from the six units provided. Once you select a unit, press one of the expansion tiles to see the definitions of the term revealed. Press again to hide the definition and see only the term. Once you feel comfortable with a unit press the back button to study other units.", style: new TextStyle(color: Colors.white, fontStyle: FontStyle.italic, fontSize: 25.0),),
new Text(" "),
new Text(" "),
],
)
);
}
}