• This project
    • Loading...
  • Sign in

常守达 / doublefeel_flutter · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • doublefeel_flutter
  • lib
  • app
  • modules
  • premium
  • controllers
  • premium_activated_controller.dart
  • feat(app): add purchase view
    1c42efc7
    by 刘宏哲
    2026-06-09 11:30:06 +0800  
    Browse Files
premium_activated_controller.dart 289 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import 'package:flutter/material.dart';
import 'package:get/get.dart';

class PremiumActivatedController extends GetxController {

  @override
  void onInit() {
    super.onInit();
  }

  @override
  void onClose() {
    super.onClose();
  }

  executeBackLogic() {
    Get.back();
  }

}