Setting up the .clear() method better

I've made the .clear() method more practical by giving the user the ability to decide which color the screen will be cleared with and setting the default as black since this is what you will probably be using.
This commit is contained in:
Murilo Miranda 2019-10-04 02:23:28 -03:00 committed by GitHub
parent 6e20f19cf6
commit 478df4abf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -6436,10 +6436,10 @@ struct ScreenPainter {
}
///
void clear() {
void clear(Color color = Color.black()) {
if(impl is null) return;
fillColor = Color(255, 255, 255);
outlineColor = Color(255, 255, 255);
fillColor = color;
outlineColor = color;
drawRectangle(Point(0, 0), window.width, window.height);
}