Files
infinite_lazy_grid/lib/core/background.dart
2025-06-25 03:35:18 +00:00

31 lines
942 B
Dart

import 'package:flutter/material.dart';
abstract class CanvasBackground {
/// the fill color of background
final Color bgColor;
const CanvasBackground({this.bgColor = Colors.white});
/// draw the backround on this context. Implement this to have
/// different kinds of backgrounds
void paint(Canvas canvas, Offset offset, double scale, Size canvasSize);
}
class NoBackground extends CanvasBackground {
const NoBackground();
@override
void paint(Canvas canvas, Offset offset, double scale, Size canvasSize) {}
}
class SingleColorBackround extends CanvasBackground {
const SingleColorBackround(Color backgroundColor) : super(bgColor: backgroundColor);
@override
void paint(Canvas canvas, Offset offset, double scale, Size canvasSize) {
final paint = Paint()
..color = bgColor
..style = PaintingStyle.fill;
canvas.drawRect(Rect.fromLTWH(0, 0, canvasSize.width, canvasSize.height), paint);
}
}