Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/firebase_ui_auth/example/windows/runner/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "utils.h"

int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_command) {
_In_ wchar_t* command_line, _In_ int show_command) {
// Attach to console when present (e.g., 'flutter run') or create a
// new console when running with a debugger.
if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase_ui_database/lib/src/table_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ class _PropertyTypeDropdown extends StatelessWidget {
final localizations = FirebaseUILocalizations.labelsOf(context);

return DropdownButtonFormField<_PropertyType?>(
value: formState?.type,
initialValue: formState?.type,
decoration: InputDecoration(labelText: localizations.typeLabel),
items: [
DropdownMenuItem(
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase_ui_firestore/lib/src/table_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ class _PropertyTypeDropdown extends StatelessWidget {
final localizations = FirebaseUILocalizations.labelsOf(context);

return DropdownButtonFormField<_PropertyType?>(
value: formState?.type,
initialValue: formState?.type,
decoration: InputDecoration(labelText: localizations.typeLabel),
items: [
DropdownMenuItem(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart';

import 'package:firebase_ui_shared/firebase_ui_shared.dart';
Expand Down
1 change: 0 additions & 1 deletion packages/firebase_ui_shared/lib/src/themed.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';

/// {@template ui.shared.themed_value}
Expand Down
Loading