Make title widget const

This commit is contained in:
Caleb Jasik 2025-01-23 16:41:11 -06:00
parent 58940b9a1a
commit b6bf61c084
No known key found for this signature in database

View file

@ -15,7 +15,7 @@ class LicensesScreen extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return SimplePage( return SimplePage(
title: Text("Licences"), title: const Text("Licences"),
scrollable: SimpleScrollable.none, scrollable: SimpleScrollable.none,
child: ListView.builder( child: ListView.builder(
itemCount: allDependencies.length, itemCount: allDependencies.length,