Skip to content

Instantly share code, notes, and snippets.

@Chralu
Chralu / main.dart
Last active March 20, 2023 10:05
Form- custom textfield
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@Chralu
Chralu / main.dart
Last active July 20, 2022 16:47
Flutter101 - Simple widget
// Copyright (c) 2022, TheTribe.io
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Center(