Skip to content

Instantly share code, notes, and snippets.

View Gabbrolee's full-sized avatar

Gabbrolee

View GitHub Profile
@Gabbrolee
Gabbrolee / main
Created May 30, 2023 16:44 — forked from timelessfusionapps/main
Flutter showDatePicker example
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}