Flutter -StatelessWidget(Mobile App Development)

Published: 13 September 2020
on channel: SoftDev
67
3

import 'package:flutter/material.dart';

void main(){
runApp(new Application());
}

class Application extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Stateless widget',
home: new Scaffold(
body: new Container(
color: Colors.pink,
child: new Container(
color: Colors.yellow,
margin: const EdgeInsets.all(20.0),
),
),
),
);
}
}


On this page of the site you can watch the video online Flutter -StatelessWidget(Mobile App Development) with a duration of hours minute second in good quality, which was uploaded by the user SoftDev 13 September 2020, share the link with friends and acquaintances, this video has already been watched 67 times on youtube and it was liked by 3 viewers. Enjoy your viewing!