Skip to content

Instantly share code, notes, and snippets.

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

Tim Bierbaum bierbaumtim

🏠
Working from home
View GitHub Profile
@bierbaumtim
bierbaumtim / chat_message_render_box.dart
Created April 23, 2023 17:06 — forked from craiglabenz/chat_message_render_box.dart
Demonstrates a custom RenderObject that draws chat messages like WhatsApp, where the `sentAt` timestamp is tucked into the last line if it fits
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override