Skip to content

Commit

Permalink
Merge pull request #16847 from [BEAM-13785] [Playground] enable SCIO sdk
Browse files Browse the repository at this point in the history
[BEAM-13785] [Playground] enable SCIO sdk
  • Loading branch information
pabloem authored Feb 16, 2022
2 parents 3fed305 + 07378ce commit 879638a
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ typedef SetExample = void Function(ExampleModel example);
const kEmptyExampleName = 'Catalog';

const double kWidth = 150;
const double kHeight = 137;
const double kHeight = 172;

class SDKSelector extends StatelessWidget {
final SDK sdk;
Expand All @@ -58,10 +58,7 @@ class SDKSelector extends StatelessWidget {
createDropdown: (close) => Column(
children: [
const SizedBox(height: kMdSpacing),
// SCIO is not supported yet
...SDK.values
.where((element) => element != SDK.scio)
.map((SDK value) {
...SDK.values.map((SDK value) {
return SizedBox(
width: double.infinity,
child: Consumer<ExampleState>(
Expand Down

0 comments on commit 879638a

Please sign in to comment.