Skip to content

Instantly share code, notes, and snippets.

@r100-stack
Last active September 27, 2022 03:45
Show Gist options
  • Save r100-stack/353f03874a1f3600563df9ac0414cfc3 to your computer and use it in GitHub Desktop.
Save r100-stack/353f03874a1f3600563df9ac0414cfc3 to your computer and use it in GitHub Desktop.
joe burrow <3

LSU Info Session 2022 Demo

Joe Burrow <3 App

Created with <3 with dartpad.dev.

import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
Text('Joe Burrow ❤️', style: TextStyle(fontSize: 40.0)),
SizedBox(height: 25.0),
Expanded(
child: Image.network(
'https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/SELU_LSU_9718_065.jpg/220px-SELU_LSU_9718_065.jpg',
fit: BoxFit.cover
)
)
]
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment