1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

[platform_channels] adds implementation of BasicMessageChannel for iOS (#610)

This commit is contained in:
Ayush Bherwani
2020-12-15 11:45:35 +05:30
committed by GitHub
parent e940d54618
commit 64fce38501
4 changed files with 56 additions and 6 deletions

View File

@@ -25,6 +25,11 @@ class PlatformChannelSample extends StatelessWidget {
'/addPetDetails': (context) => AddPetDetails(),
},
title: 'Platform Channel Sample',
theme: ThemeData(
snackBarTheme: SnackBarThemeData(
backgroundColor: Colors.blue[500],
),
),
home: HomePage(),
);
}