myRoutes top-level property
List
myRoutes
getter/setter pair
Implementation
List myRoutes = [
const Center(
child: Text(
"PAGE 1",
style: TextStyle(
color: Color.fromARGB(255, 255, 255, 255),
fontSize: 50,
fontWeight: FontWeight.bold,
),
),
),
const Center(
child: Text(
"PAGE 2",
style: TextStyle(
color: Colors.white,
fontSize: 50,
fontWeight: FontWeight.bold,
),
),
),
const Center(
child: Text(
"PAGE 3",
style: TextStyle(
color: Colors.white,
fontSize: 50,
fontWeight: FontWeight.bold,
),
),
),
const Center(
child: Text(
"PAGE 4",
style: TextStyle(
color: Colors.white,
fontSize: 50,
fontWeight: FontWeight.bold,
),
),
),
];