skip to Main Content

Flutter: How to make telegram type bubble in chat message

Current output: Expected output: Code: Align( alignment: Alignment.topRight, child: Container( padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 20), margin: EdgeInsets.only(right: 12, top: 8), decoration: BoxDecoration( color: Color(0xFF486993), borderRadius: BorderRadius.all(Radius.circular(20)), ), child: Text("This is my message"), ), )

VIEW QUESTION

How to sign a Binance HTTP request using Dart – Twitter API

When I try to make a request I get the following error message: code: -1100, msg: Illegal characters found in parameter 'signature'; legal range is '^[A-Fa-f0-9]{64}$' Link to binance API: https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md The request is being made to https://api.binance.com/api/v3/account. The query…

VIEW QUESTION

Flutter app freeze in build release, work properly in debug, androidX?

final update: now everything works; while before I was not adding internet permission and the app worked perfectly (contacting API and everything), since the update I have to explicitly modify the manifest. Easy fix actually: manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.xxx.xxx"> <uses-permission android:name="android.permission.INTERNET"/>…

VIEW QUESTION
Back To Top
Search