1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

[compass_app] Don't expose Dimens subclasses (#2541)

Avoid exposing the subclasses as they shouldn't be instantiated again or
overridden.

Also consistently use fields and getters in the declarations.
This commit is contained in:
Parker Lougheed
2024-12-05 21:39:35 +08:00
committed by GitHub
parent 90cd385ef4
commit 5adcda3640
2 changed files with 18 additions and 18 deletions

View File

@@ -132,7 +132,7 @@ class _AppSearchBar extends StatelessWidget {
child: Padding(
padding: EdgeInsets.only(
top: Dimens.of(context).paddingScreenVertical,
bottom: Dimens.dimensMobile.paddingScreenVertical,
bottom: Dimens.mobile.paddingScreenVertical,
),
child: AppSearchBar(
config: widget.viewModel.config,