Skip to content

Instantly share code, notes, and snippets.

View takicak's full-sized avatar

Taki takicak

  • Atlas Yazilim
  • İstanbul
View GitHub Profile
@takicak
takicak / main.dart
Last active August 7, 2022 21:50
blueCircle
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@takicak
takicak / main.dart
Last active July 28, 2022 18:08
expansionListMenu
// Welcome to another flutter tutorial
// In this video we will see how to create a multi-level Expansion List
// First Let's create a class for each row in the Expansion List
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(ExpansionTileDemo());