Created
April 8, 2025 06:12
-
-
Save hasibsakib1/c41059c166e8101af4dbfc85568edbda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import core.widgets; | |
widget root = Container( | |
color: 0xFFEEEEEE, | |
child: Center( | |
child: Column( | |
mainAxisAlignment: "center", | |
children: [ | |
Text(text: ["Hello, ", data.user.name, "!"], textDirection: "ltr"), | |
SizedBox(height: 20), | |
Text(text: "Remote UI loaded at runtime", textDirection: "ltr"), | |
] | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment