Audit the Flutter Framework and replace unnecessary drawPath() calls with specialized primitive calls like drawRRect(). For example, text fields currently use drawPath() for shapes that are natively supported as rounded rectangles, leading to avoidable aliasing.
Audit the Flutter Framework and replace unnecessary drawPath() calls with specialized primitive calls like
drawRRect(). For example, text fields currently usedrawPath()for shapes that are natively supported as rounded rectangles, leading to avoidable aliasing.