Skip to content

Instantly share code, notes, and snippets.

@rivella50
rivella50 / main.dart
Created October 29, 2023 20:28
Flutter Table Columns Depending on Screen Width
import 'package:flutter/material.dart';
/// Flutter code sample for [Table].
void main() => runApp(const TableExampleApp());
class TableExampleApp extends StatelessWidget {
const TableExampleApp({super.key});
@override
@rivella50
rivella50 / main.dart
Last active July 12, 2022 14:19
Queue Firebase Tasks
import 'dart:math';
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}