Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

635105 Views

Latest files of /cody/iCriptSnappie/flutter_portfolio/windows/runner

resources/ cody/iCriptSnappie/flutter_portfolio/windows/runner/resources/
1 Items
  • app_icon.ico
  • runner.exe.manifest cody/iCriptSnappie/flutter_portfolio/windows/runner/runner.exe.manifest
    174 Views
    0 Comments
    Media file
    win32_window.cpp cody/iCriptSnappie/flutter_portfolio/windows/runner/win32_window.cpp
    95 Views
    0 Comments
    #include "win32_window.h"

    #include <dwmapi.h>
    #include <flutter_windows.h>

    #include "resource.h"

    namespace {
    resource.h cody/iCriptSnappie/flutter_portfolio/windows/runner/resource.h
    94 Views
    0 Comments
    //{{NO_DEPENDENCIES}}
    // Microsoft Visual C++ generated include file.
    // Used by Runner.rc
    //
    #define IDI_APP_ICON 101

    // Next default values for new objects
    //
    win32_window.h cody/iCriptSnappie/flutter_portfolio/windows/runner/win32_window.h
    100 Views
    0 Comments
    #ifndef RUNNER_WIN32_WINDOW_H_
    #define RUNNER_WIN32_WINDOW_H_

    #include <windows.h>

    #include <functional>
    #include <memory>
    #include <string>
    main.cpp cody/iCriptSnappie/flutter_portfolio/windows/runner/main.cpp
    108 Views
    0 Comments
    #include <flutter/dart_project.h>
    #include <flutter/flutter_view_controller.h>
    #include <windows.h>

    #include "flutter_window.h"
    #include "utils.h"

    int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
    Runner.rc cody/iCriptSnappie/flutter_portfolio/windows/runner/Runner.rc
    182 Views
    0 Comments
    Media file
    flutter_window.cpp cody/iCriptSnappie/flutter_portfolio/windows/runner/flutter_window.cpp
    109 Views
    0 Comments
    #include "flutter_window.h"

    #include <optional>

    #include "flutter/generated_plugin_registrant.h"

    FlutterWindow::FlutterWindow(const flutter::DartProject& project)
    : project_(project) {}
    utils.cpp cody/iCriptSnappie/flutter_portfolio/windows/runner/utils.cpp
    101 Views
    0 Comments
    #include "utils.h"

    #include <flutter_windows.h>
    #include <io.h>
    #include <stdio.h>
    #include <windows.h>

    #include <iostream>
    utils.h cody/iCriptSnappie/flutter_portfolio/windows/runner/utils.h
    98 Views
    0 Comments
    #ifndef RUNNER_UTILS_H_
    #define RUNNER_UTILS_H_

    #include <string>
    #include <vector>

    // Creates a console for the process, and redirects stdout and stderr to
    // it for both the runner and the Flutter library.
    CMakeLists.txt cody/iCriptSnappie/flutter_portfolio/windows/runner/CMakeLists.txt
    158 Views
    0 Comments
    cmake_minimum_required(VERSION 3.14)
    project(runner LANGUAGES CXX)

    # Define the application target. To change its name, change BINARY_NAME in the
    # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
    # work.
    #
    # Any new source files that you add to the application should be added here.
    flutter_window.h cody/iCriptSnappie/flutter_portfolio/windows/runner/flutter_window.h
    105 Views
    0 Comments
    #ifndef RUNNER_FLUTTER_WINDOW_H_
    #define RUNNER_FLUTTER_WINDOW_H_

    #include <flutter/dart_project.h>
    #include <flutter/flutter_view_controller.h>

    #include <memory>