• 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
  • webview
  • bindings
  • webview_binding.dart
  • init
    1ac8d16e
    by 常守达
    2026-06-01 17:04:00 +0800  
    Browse File »
webview_binding.dart 240 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
import 'package:get/get.dart';

import '../controllers/webview_controller.dart';

class WebviewBinding extends Bindings {
  @override
  void dependencies() {
    Get.lazyPut<WebviewController>(
      () => WebviewController(),
    );
  }
}