flutter_socket_io 0.0.1 copy "flutter_socket_io: ^0.0.1" to clipboard
flutter_socket_io: ^0.0.1 copied to clipboard

outdated

Flutter Socket IO

example/lib/main.dart

import 'package:flutter/material.dart';


void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('Plugin example app'),
        ),
        body: new Center(
          child: new Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
66
likes
0
pub points
78%
popularity

Publisher

unverified uploader

Flutter Socket IO

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_socket_io