stateless widget

PHOTO EMBED

Wed Aug 02 2023 12:31:13 GMT+0000 (Coordinated Universal Time)

Saved by @manish23 #flutter

import 'package:flutter/material.dart';

class StatelessPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Stateless Widget'),
          backgroundColor: Colors.white,
        ),
        backgroundColor: Colors.red,
        body: Placeholder(),
      ),
    );
  }
}
content_copyCOPY