Skip to content

Instantly share code, notes, and snippets.

@Jahidul007
Created December 25, 2021 18:13
Show Gist options
  • Save Jahidul007/df363b139bf1a8e034c9a97f2a6dceb9 to your computer and use it in GitHub Desktop.
Save Jahidul007/df363b139bf1a8e034c9a97f2a6dceb9 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: Stack(
children: List.generate(13, (index) => Container(
height: 30,
width: 30,
decoration: BoxDecoration(
color: Colors.green,
borderRadius: BorderRadius.circular(15),
),
)),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment