Created
January 13, 2019 12:46
-
-
Save amsokol/22e7e539473ca26bb3e46cd533ee1578 to your computer and use it in GitHub Desktop.
flutter-grpc-tutorial.flutter_client.lib.app.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'chat_screen.dart'; | |
/// FriendlychatApp is Flutter application | |
class FriendlychatApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: "Friendlychat", | |
home: ChatScreen(), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment