A Flutter based music player for Jellyfin

Add TextField for server URL

modamo-gh 06771d4e 25f8898a

Changed files
+17 -7
lib
+17 -7
lib/main.dart
··· 14 14 ), 15 15 ), 16 16 child: Center( 17 - child: Text( 18 - "pudge", 19 - style: GoogleFonts.outfit( 20 - color: Color(0xFFAD2B1E), 21 - fontSize: 40, 22 - fontWeight: FontWeight.w100, 23 - ), 17 + child: Column( 18 + children: [ 19 + Text( 20 + "pudge", 21 + style: GoogleFonts.outfit( 22 + color: Color(0xFFAD2B1E), 23 + fontSize: 40, 24 + fontWeight: FontWeight.w100, 25 + ), 26 + ), 27 + TextField( 28 + decoration: InputDecoration( 29 + border: OutlineInputBorder(), 30 + hintText: "Enter your server URL", 31 + ), 32 + ), 33 + ], 24 34 ), 25 35 ), 26 36 ),