0

我正在尝试按照此youtube 教程将事件插入到同步融合颤动日历中,但我不想像他们那样使用提供者。我试图编写我的主要添加/编辑事件代码,如下所示:

class EditEventsPage extends StatefulWidget {
  final Events? event;

  const EditEventsPage({Key? key, this.event}) : super(key: key);

  @override
  _EditEventsPageState createState() => _EditEventsPageState();
}

class _EditEventsPageState extends State<EditEventsPage> {
  final _formKey = GlobalKey<FormState>();
  final titleController = TextEditingController();
  late DateTime fromDate;
  late DateTime toDate;

  @override
  void initState() {
    super.initState();
    if (widget.event == null) {
      fromDate = DateTime.now();
      toDate = DateTime.now().add(Duration(hours: 4));
    }
  }

  @override
  void dispose() {
    titleController.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Color(0xFF1c3f77),
        elevation: 0,
        leading: CloseButton(),
        actions: buildEditingActions(),
      ),
      body: SingleChildScrollView(
        padding: EdgeInsets.all(12),
        child: Form(
            key: _formKey,
            child: Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
              buildTitle(),
              SizedBox(height: 25),
              buildDateTime(),
            ])),
      ),
    );
  }



  List<Widget> buildEditingActions() => [
        ElevatedButton.icon(
          style: ElevatedButton.styleFrom(
              primary: Colors.transparent, shadowColor: Colors.transparent),
          icon: Icon(Icons.done),
          label: Text(
            'Add',
            style: TextStyle(color: Colors.white, fontSize: 15),
          ),
          onPressed: saveEvent,
        )
      ];

  Widget buildTitle() => TextFormField(
        style: TextStyle(fontSize: 15),
        decoration:
            InputDecoration(border: UnderlineInputBorder(), hintText: 'Title'),
        onFieldSubmitted: (_) => saveEvent(),
        validator: (title) =>
            title != null && title.isEmpty ? 'Title cannot be empty' : null,
        controller: titleController,
      );

为了添加一个事件,代码是:

Future saveEvent() async {
    final isValid = _formKey.currentState!.validate();

    if (isValid) {
      final event = Events(
        title: titleController.text,
        details: 'testing 1 2 3',
        from: fromDate,
        to: toDate,
        isAllday: false,
      );

      InsertEvent.addEvent(event);
      Navigator.of(context).pop();
    }
  }

插入事件类代码:

class InsertEvent {
  final List<Events> _events = [];
  List<Events> get events => _events;

  void addEvent(Events event) {
    _events.add(event);
  }
}

但是,它给了我一个错误,“无法使用静态访问访问实例成员'addEvent'”。有人可以解释为什么会发生这种情况以及如何解决吗?

4

2 回答 2

2

除非您存在该类的实例,否则您无法从类中访问方法。如果您想访问它,您可以将方法设为静态。

class InsertEvent {
  final List<Events> _events = [];
  List<Events> get events => _events;

  static void addEvent(Events event) {
    _events.add(event);
  }}

但这可能不会单独解决您的问题。如果要保留事件,则需要该类的实例。

因此,您需要在以下状态下创建实例:

var insertEventInstance = InsertEvent();

这样您就不需要将方法设为静态,并且您可以访问事件。

他们使用提供者来保留实例,您可以将其保持在状态。

于 2021-10-06T17:53:27.260 回答
1

根据共享信息,我们检查了提到的问题“<strong>Instance member '' can't be access using static access”。在共享代码片段中,您调用了该方法而没有为该类创建实例,因此您收到此错误。此外,我们还有一个 KB 文档,用于使用约会编辑器将约会添加到日历中。请从以下链接中找到 KB。

知识库链接: https ://www.syncfusion.com/kb/11204/how-to-design-and-configure-your-appointment-editor-in-flutter-calendar

此外,我们还有一个 KB 文档,用于使用 onTap 回调将约会添加到日历。

知识库链接: https ://www.syncfusion.com/kb/12300/how-to-add-the-appointments-using-the-ontap-callback-in-the-flutter-calendar

此外,我们还有一个 KB 文档,用于删除已点击的约会。请从以下链接中找到文档。

知识库链接: https ://www.syncfusion.com/kb/11522/how-to-delete-an-appointment-in-the-flutter-calendar

于 2021-10-07T10:00:55.223 回答