This repository was archived by the owner on May 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -576,7 +576,7 @@ class HistoryListView extends StatefulWidget {
576
576
class _HistoryListViewState extends State<HistoryListView> {
577
577
final _key = GlobalKey();
578
578
579
- // Create a mask which will make a fade out appearance by making a linear gradient of transparent -> opaque.
579
+ // Create a linear gradient mask from transparent to opaque.
580
580
static const Gradient _maskingGradient = LinearGradient(
581
581
colors: [Colors.transparent, Colors.black],
582
582
stops: [0.0, 0.5],
@@ -855,7 +855,8 @@ return Row(
855
855
children: [
856
856
SafeArea(
857
857
child: NavigationRail(
858
- extended: constraints.maxWidth >= 600, // Display only icons if screen width is less than 600px
858
+ // Display only icons if screen width is less than 600px
859
+ extended: constraints.maxWidth >= 600,
859
860
destinations: [
860
861
NavigationRailDestination(
861
862
icon: Icon(Icons.home),
@@ -1035,7 +1036,7 @@ runtimes:
1035
1036
1036
1037
Create the Dockerfile at the same path as your runtime specifies. This Dockerfile is fairly straightforward, taking its
1037
1038
1038
- ` ` ` Dockerfile {{ label: "docker/flutter.dockerfile" }}
1039
+ ` ` ` dockerfile {{ label: "docker/flutter.dockerfile" }}
1039
1040
FROM dart:stable AS build
1040
1041
1041
1042
# The Nitric CLI will provide the HANDLER arg with the location of our service
You can’t perform that action at this time.
0 commit comments