Skip to content

Instantly share code, notes, and snippets.

@aloisdeniel
aloisdeniel / flutter_spanablegrid.dart
Last active August 10, 2023 11:27
Custom GridView with various cell sizes in Flutter
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:flutter/src/rendering/sliver.dart';
import 'package:flutter/src/rendering/sliver_grid.dart';
class _CoordinateOffset {
final double main, cross;
_CoordinateOffset(this.main, this.cross);
}