Skip to content

Instantly share code, notes, and snippets.

View asifameer's full-sized avatar

Asif Amir asifameer

  • GOMAWD
  • Rawalpindi, Pakistan
  • 13:41 (UTC +05:00)
View GitHub Profile
@asifameer
asifameer / example.dart
Created February 12, 2023 07:54
Dart Example
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override