31 lines
802 B
Dart
31 lines
802 B
Dart
import 'package:ltx_flutter/appwrite/categories_api.dart';
|
|
import 'package:ltx_flutter/appwrite/database_api.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:appwrite/models.dart';
|
|
import 'package:ltx_flutter/helpers.dart';
|
|
|
|
class WeekView extends StatelessWidget {
|
|
const WeekView({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextFormField(
|
|
showCursor: false,
|
|
autofillHints: [],
|
|
autocorrect: false,
|
|
onEditingComplete: () {
|
|
print("Test");
|
|
},
|
|
style:
|
|
TextStyle(color: Colors.amber, fontFamily: "Monospace", height: 35),
|
|
textAlign: TextAlign.center,
|
|
keyboardType: TextInputType.numberWithOptions(
|
|
signed: false,
|
|
),
|
|
);
|
|
}
|
|
}
|