mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-13 09:20:31 -07:00
feat: Android TV support (#503)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
parent
7ab8c015b9
commit
c299492d6d
168 changed files with 12019 additions and 3073 deletions
0
lib/screens/login/widgets/credentials_input_section.dart
Normal file
0
lib/screens/login/widgets/credentials_input_section.dart
Normal file
|
|
@ -1,8 +1,8 @@
|
|||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:iconsax_plus/iconsax_plus.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'package:iconsax_plus/iconsax_plus.dart';
|
||||
|
||||
import 'package:fladder/models/credentials_model.dart';
|
||||
import 'package:fladder/providers/discovery_provider.dart';
|
||||
|
|
@ -37,6 +37,7 @@ class DiscoverServersWidget extends ConsumerWidget {
|
|||
return ListView(
|
||||
padding: const EdgeInsets.all(6),
|
||||
shrinkWrap: true,
|
||||
physics: const NeverScrollableScrollPhysics(),
|
||||
children: [
|
||||
if (existingServers.isNotEmpty) ...[
|
||||
Row(
|
||||
|
|
@ -123,8 +124,8 @@ class _ServerInfoCard extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Card(
|
||||
child: InkWell(
|
||||
onTap: () => onPressed(server),
|
||||
child: TextButton(
|
||||
onPressed: () => onPressed(server),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 6, horizontal: 12),
|
||||
child: Row(
|
||||
|
|
|
|||
0
lib/screens/login/widgets/server_input_section.dart
Normal file
0
lib/screens/login/widgets/server_input_section.dart
Normal file
0
lib/screens/login/widgets/server_url_input.dart
Normal file
0
lib/screens/login/widgets/server_url_input.dart
Normal file
Loading…
Add table
Add a link
Reference in a new issue