Skip to content

Instantly share code, notes, and snippets.

View sphinxlikee's full-sized avatar

Cem Polat sphinxlikee

View GitHub Profile
@sphinxlikee
sphinxlikee / TCPClient.dart
Last active July 6, 2023 08:14
TCP Client
import 'package:flutter/material.dart';
import 'dart:async';
import 'dart:io';
import 'package:flutter_riverpod/flutter_riverpod.dart';
void main() {
runApp(ProviderScope(child: MyApp()));
}
class MyApp extends StatelessWidget {