import 'dart:math'; import 'package:flutter/material.dart'; import 'comments_widget.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Comments App', debugShowCheckedModeBanner: false, theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue), useMaterial3: true, ), home: const MyHomePage(title: 'Comments App'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State createState() => _MyHomePageState(); } class _MyHomePageState extends State { Color _color = Colors.transparent; @override void initState() { super.initState(); _color = _generateColor(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: _color, title: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( widget.title, style: TextStyle( fontSize: 20, fontWeight: FontWeight.bold, )), Text( 'made by Factorino', style: TextStyle( fontSize: 12, fontStyle: FontStyle.italic, ), ), ], ), ), body: const CommentsWidget(), ); } Color _generateColor() { final Random random = Random(); final int red = (random.nextInt(106) + 150); final int green = (random.nextInt(106) + 150); final int blue = (random.nextInt(106) + 150); return Color.fromARGB(255, red, green, blue); } }