ZontreckWebsite/lib/pages/shitbot.dart

34 lines
970 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:zontreck/Constants.dart';
class ShitBotProductPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("ShitBot Promotional Materials"),
backgroundColor: Constants.TITLEBAR_COLOR,
),
body: Padding(
padding: EdgeInsets.all(8),
child: SingleChildScrollView(
child: Center(
child: Column(
children: [
Text(
"APRIL FOOLS",
style: TextStyle(fontSize: 64),
),
Text(
"If you fell for this joke, please contact Aria on Discord to receive a random free product. Thank you.",
style: TextStyle(fontSize: 24),
)
],
),
),
),
),
);
}
}