mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 00:10:47 +00:00
typo
This commit is contained in:
parent
ed28d2d9fc
commit
abf55b3413
2 changed files with 4 additions and 2 deletions
|
@ -49,7 +49,9 @@ class LightmeterProviders extends StatelessWidget {
|
||||||
child: EvSourceTypeProvider(
|
child: EvSourceTypeProvider(
|
||||||
child: SupportedLocaleProvider(
|
child: SupportedLocaleProvider(
|
||||||
child: ThemeProvider(
|
child: ThemeProvider(
|
||||||
child: builder(context, true),
|
child: Builder(
|
||||||
|
builder: (context) => builder(context, true),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -29,7 +29,7 @@ class _MeteringFlowState extends State<MeteringFlow> {
|
||||||
context.get<CaffeineService>(),
|
context.get<CaffeineService>(),
|
||||||
context.get<HapticsService>(),
|
context.get<HapticsService>(),
|
||||||
context.get<PermissionsService>(),
|
context.get<PermissionsService>(),
|
||||||
context.read<LightSensorService>(),
|
context.get<LightSensorService>(),
|
||||||
),
|
),
|
||||||
child: MultiBlocProvider(
|
child: MultiBlocProvider(
|
||||||
providers: [
|
providers: [
|
||||||
|
|
Loading…
Reference in a new issue