skip to Main Content

How to use Socket in Flutter apps?

I'm trying to connect to a device over TCP socket, write data and read response from socket. I made simple testing with c#, which works as expected. C# code, that works well: using (TcpClient client = new TcpClient(terminal.server_IP, terminal.port)) {…

VIEW QUESTION

Flutter – TextField Hides Behind Keyboard

There is a bottomsheet in flutter code - bottomsheet contains an TextField , While clicking on TextField , Keyboard Covers the TextFeild. Below is the code for bottom sheet showModalBottomSheet( context: context, isScrollControlled: true, builder: (BuildContext buildContext) { return SizedBox(…

VIEW QUESTION
Back To Top
Search