RibuDev

Results 5 comments of RibuDev

its already mentioned. // get devices StreamBuilder( stream: bluetoothPrint.scanResults, initialData: [], builder: (c, snapshot) => Column( children: snapshot.data.map((d) => ListTile( title: Text(d.name??''), subtitle: Text(d.address), onTap: () async { setState(() {...

same here.in iOS this package is not working.

Hi, Thanks for replying. I already declared my page as StatefulWidget and I didn't use any dispose or didChangeDependencies methods as it is a simple screen. I defined my page...

We defined the router in main.dart as follows, routerConfig: routes, and we defined our route constants in routes.dart file. For Example: final routes = GoRouter( routes: [ GoRoute( path: APPPAGE.splash.toPath,...

@msikyna same for me also. When i uploaded my app for internal testing and installed it through playstore, it caught with appintegrity check. Need to comment on that check before...