Skip to content

Instantly share code, notes, and snippets.

View mariopepe's full-sized avatar

Mario Pepe mariopepe

View GitHub Profile
@mariopepe
mariopepe / posts_list_page.dart
Created January 23, 2022 15:27
posts_list_page.dart
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:functional_error_handling/features/post/presentation/widgets/custom_list_tile.dart';
import 'package:functional_error_handling/features/post/presentation/widgets/error_dialog.dart';
import 'bloc/posts_list.dart';
class PostPage extends StatelessWidget {
const PostPage({Key? key}) : super(key: key);
@mariopepe
mariopepe / squircle.dart
Created February 14, 2022 00:42 — forked from slightfoot/squircle.dart
Flutter Squircle Shape
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Squircle',
home: new Scaffold(