Skip to content

Instantly share code, notes, and snippets.

View wilfredonoyola's full-sized avatar
🏠
Working from home

Jose Wilfredo wilfredonoyola

🏠
Working from home
View GitHub Profile
@rydmike
rydmike / main.dart
Last active July 18, 2022 19:14
EXAMPLE: Padding Slivers with SliverPadding and demo of why Padding does not work
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
return runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
@tarek360
tarek360 / CurvedShape.dart
Last active February 8, 2023 00:54
Draw a curved shape in Flutter
import "package:flutter/material.dart";
import 'package:flutter/services.dart';
import 'dart:math';
const CURVE_HEIGHT = 160.0;
const AVATAR_RADIUS = CURVE_HEIGHT * 0.28;
const AVATAR_DIAMETER = AVATAR_RADIUS * 2;
void main() => runApp(new MyApp());
@bigsergey
bigsergey / review-checklist.md
Last active March 6, 2025 18:38
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?