test
This commit is contained in:
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
||||
import 'package:oc_front/main.dart';
|
||||
import 'package:oc_front/pages/shared.dart';
|
||||
|
||||
// ignore: must_be_immutable
|
||||
class ShallowTextInputWidget extends StatefulWidget {
|
||||
double? width;
|
||||
CollaborativeAreaType type = CollaborativeAreaType.workspace;
|
||||
@@ -31,11 +32,11 @@ class ShallowTextInputWidget extends StatefulWidget {
|
||||
|
||||
String? attr;
|
||||
|
||||
ShallowTextInputWidget ({ Key? key, this.width, this.current, this.attr, this.readOnly = false, this.alignment = MainAxisAlignment.start,
|
||||
ShallowTextInputWidget ({ super.key, this.width, this.current, this.attr, this.readOnly = false, this.alignment = MainAxisAlignment.start,
|
||||
this.iconLoad, this.iconRemove, this.hint, this.forms = const [], this.loadStr,
|
||||
this.tooltipLoad = "", this.tooltipRemove = "",
|
||||
this.filled, this.hintColor, this.color,
|
||||
required this.type, this.canLoad, this.canRemove, this.load, this.remove, this.change }): super(key: key);
|
||||
required this.type, this.canLoad, this.canRemove, this.load, this.remove, this.change });
|
||||
@override ShallowTextInputWidgetState createState() => ShallowTextInputWidgetState();
|
||||
|
||||
Map<String, dynamic> serialize() {
|
||||
|
||||
Reference in New Issue
Block a user