Skip to content

Instantly share code, notes, and snippets.

@jenis2001
Forked from angelabauer/solution3.dart
Created December 16, 2023 10:34
Show Gist options
  • Save jenis2001/4ed5bfe53b56016539db2aacfd76a36b to your computer and use it in GitHub Desktop.
Save jenis2001/4ed5bfe53b56016539db2aacfd76a36b to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(
MaterialApp(
home: BallPage(),
),
);
class BallPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.blue,
appBar: AppBar(
backgroundColor: Colors.blue.shade900,
title: Text('Ask Me Anything'),
),
body: Ball(),
);
}
}
class Ball extends StatefulWidget {
@override
_BallState createState() => _BallState();
}
class _BallState extends State<Ball> {
@override
Widget build(BuildContext context) {
return Center(
child: Image.asset('images/ball1.png'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment