Skip to content

Instantly share code, notes, and snippets.

View Aldo111's full-sized avatar

Azarro Aldo111

View GitHub Profile
@Aldo111
Aldo111 / app_style.dart
Created July 13, 2021 05:57
Flutter E-Store Tutorial Part 3 Files
// constants/app_style.dart
import 'package:flutter/material.dart';
abstract class AppStyle {
static const primaryColor = Color(0xFFFDFDFD);
static const secondaryColor = Color(0xFF252525);
static const backgroundGrey = Color(0xFF383838);
static const captionColor = Color(0xFFbababa);
@Aldo111
Aldo111 / main.dart
Created June 23, 2021 02:39
Part 2 of my Flutter Tutorials
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
const primaryColor = Color(0xFFFDFDFD);
const secondaryColor = Color(0xFF252525);
const double iconSize = 36;
const imageUrl =
@Aldo111
Aldo111 / main.dart
Created June 19, 2021 21:04
Visual effect of 2 sections of content curving seamlessly into each other at opposite ends of their border
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
const primaryColor = Color(0xFFFDFDFD);
const secondaryColor = Color(0xFF252525);
class MyApp extends StatelessWidget {