You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
493 B
20 lines
493 B
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class WelcomeScreen extends StatelessWidget {
|
|
const WelcomeScreen({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Stack(
|
|
children: [
|
|
Positioned(
|
|
bottom: 0,
|
|
child: Image(
|
|
width: MediaQuery.of(context).size.width,
|
|
image: AssetImage("assets/images/background_welcomepage.png"))),
|
|
],
|
|
);
|
|
}
|
|
}
|