Autor: Webmaster

Bild als Hintergrund

class MyApp extends StatelessWidget {  @override  Widget build(BuildContext context) {   return MaterialApp(   title: 'App mit Bildhintergrund',   home: Scaffold(   appBar: AppBar(   title: Text('Image-Hintergrund'), ),   body: Container(   constraints: BoxConstraints.expand(),   decoration: BoxDecoration(   image: DecorationImage(   image:…

Read More

Alert Dialog

import 'package:flutter/material.dart'; class MyAlertDialog extends StatefulWidget {   @override   _MyAlertDialogState createState() => _MyAlertDialogState(); } class _MyAlertDialogState extends State<MyAlertDialog> {   @override   Widget build(BuildContext context) {     return Scaffold(       body: Center(         child: ElevatedButton(           onPressed: () {             showDialog(              …

Read More