Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amsokol/22e7e539473ca26bb3e46cd533ee1578 to your computer and use it in GitHub Desktop.
Save amsokol/22e7e539473ca26bb3e46cd533ee1578 to your computer and use it in GitHub Desktop.
flutter-grpc-tutorial.flutter_client.lib.app.dart
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