Skip to content

Instantly share code, notes, and snippets.

View PRID021's full-sized avatar

Phạm Đức Hoàng PRID021

View GitHub Profile
@PRID021
PRID021 / chat_message_render_box.dart
Created August 30, 2024 15:38 — 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