56 questions
-2
votes
2
answers
612
views
How to use Desktop-Only CSS?
Is there a way to create desktop-only CSS? Or a way to work around this?
I have been looking at some media queries like these, but without luck so far:
@media (any-pointer: fine)
@media screen and ( -...
-1
votes
1
answer
59
views
MainThread usage
I'm kinda new with the mobile app development, I've seen sometimes some snippets of async codes runned using MainThread.BeginInvokeOnMainThread, what's the difference beetween running some async code ...
0
votes
1
answer
60
views
Concern in Managing Platform-Specific Features
I'm wondering how to address a concern I have. I have a "foo" and multiple conditional platform-specific "foos" (e.g., winFoo, LinuxFoo, or AndroidFoo), where all the platform-...
0
votes
0
answers
779
views
How can I send data as Stream from native kotlin to Flutter
How can I send data as a stream from native Kotlin code to Flutter?
I have implemented Method Channel, but they send only once, but I need a stream of data.
I have tried EventChannel but I'm getting ...
4
votes
2
answers
2k
views
Partial platform specific methods in .NET MAUI
I'm trying to implement plattform specific partial method in .NET MAUI to get the connection string for the database.
In the "main application":
namespace TestApp.DL;
public partial class ...
1
vote
0
answers
117
views
C# Conditional Attribute: What about using directives?
I am writing a c# application that currently uses
#if IOS
using Plugin.Firebase.iOS;
#else
using Plugin.Firebase.Android;
#endif
and then it uses it later on:
void SomeMethod(Events events) {
#if IOS
...
0
votes
1
answer
640
views
Flutter: Problem with platform specific dialog
I am trying to make a platform specific dialog, but mine solution all the time shows android (i am working on iphone simulator). Do you have any idea what is the problem?
onTap: () => ...
1
vote
4
answers
401
views
How to make page transition when use bottomNavigationBar in flutter
I use a basic bottomNavigationBar and now it shows just page without any transition,i want to use page transition when tap different bottomNavigationBars item.
2
votes
1
answer
3k
views
Pass data from flutter to native IOS
How to pass data from flutter to native iOS (Swift) by using platform specific code. I searched in the internet and stack overflow but it is showing an example of only Native Android. Below is the ...
2
votes
3
answers
1k
views
Can't understand Gradle settings file,please add the path 'aar_file_name' manually error in flutter
I want to add .AAR file into my flutter project. How to add .AAR file ?? please help
I follow this steps in my android studio but it not work
File --> New --> New module --> import JAR/AAR ...
0
votes
1
answer
451
views
XAML Nested ScrollView leaves scrolling to parent
I have an app with a structure like this (where the Frame has the contents set to a Page eg MyPage:
MainWindow.xaml
<Window ... Height="450" Width="800">
<Grid>
...
3
votes
0
answers
1k
views
Compiling data.table in R 4.0.2 with OpenMP
Since R 4.0 data.table can no longer can use OpenMP if installed as a binary from CRAN. The message upon loading the package is: "data.table 1.12.8 using 1 threads (see ?getDTthreads). Latest ...
0
votes
1
answer
133
views
A good aproach to represent A LOT of functions on UML
I am working on a project which requires to have a strong architecture; I'm currently using MDA (Model-Driven Architecture) and i am facing a trouble in the Platform-Specific Model (M1).
I have a ...
1
vote
1
answer
1k
views
Bluetooth devices found in an Android app, but not in a platform specific code in Flutter
I'm trying to scan, connect and receive data from a Bluetooth module. Everything works fine if I just use an android application. I can scan and find all nearby devices, connect to anyone (I'm only ...
10
votes
0
answers
8k
views
SwiftUI ScrollView and alignment
Okay, I know SwiftUI is a shift in thinking, especially coming from a world of HTML and css. But I've spent like 4 days trying to get something to work that I feel should be pretty easy and just can'...