manofi21
9/2/2019 - 8:19 AM

how to changes backgorund to image

how to changes backgorund to image

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Flut',
        home: Scaffold(
          appBar: AppBar(
            title: Text("login Page"),
          ),
          body: Container(
              decoration: BoxDecoration(
                  image: DecorationImage(
                    image: AssetImage("assets/srg.jpg"),
            fit: BoxFit.contain,
          ))),
        ));
  }
}