Complete recipes page

This commit is contained in:
Alexander Laevens
2022-11-27 20:29:39 -07:00
parent 373eabe002
commit 9b1fc4e0e2
71 changed files with 806 additions and 251 deletions

View File

@@ -119,6 +119,15 @@ class ColorPage extends StatelessWidget {
color: Theme.of(context).colorScheme.onSurfaceVariant),
)),
),
Container(
padding: const EdgeInsets.all(8),
color: Theme.of(context).canvasColor,
child: Center(
child: Text(
"Canvas",
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
)),
)
],
);
}