Skip to content

Commit c200b83

Browse files
committed
refactor(Toast): Deleting the toast module
The ToastModule was added before we were able to differentiate modules based on platform. Now, we'll likely need to spend some time designing the ToastWindows APIs, and we'll start with a blank canvas.
1 parent 0bcf733 commit c200b83

File tree

6 files changed

+0
-174
lines changed

6 files changed

+0
-174
lines changed

ReactWindows/ReactNative.Tests/Modules/Toast/ToastNotificationTests.cs

-56
This file was deleted.

ReactWindows/ReactNative.Tests/ReactNative.Tests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@
127127
<Compile Include="Modules\Network\TaskCancellationManagerTests.cs" />
128128
<Compile Include="Modules\StatusBar\StatusBarModuleTests.cs" />
129129
<Compile Include="Modules\Storage\AsyncStorageModuleTests.cs" />
130-
<Compile Include="Modules\Toast\ToastNotificationTests.cs" />
131130
<Compile Include="Modules\WebSocket\WebSocketModuleTests.cs" />
132131
<Compile Include="Properties\AssemblyInfo.cs" />
133132
<Compile Include="ReactInstanceManagerTests.cs" />

ReactWindows/ReactNative/Modules/Toast/ToastHelper.cs

-60
This file was deleted.

ReactWindows/ReactNative/Modules/Toast/ToastModule.cs

-53
This file was deleted.

ReactWindows/ReactNative/ReactNative.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,6 @@
358358
<Compile Include="UIManager\BorderedCanvasManager.cs" />
359359
<Compile Include="Views\View\ReactViewManager.cs" />
360360
<Compile Include="Views\TextInput\ReactTextInputManager.cs" />
361-
<Compile Include="Modules\Toast\ToastHelper.cs" />
362-
<Compile Include="Modules\Toast\ToastModule.cs" />
363361
<Compile Include="UIManager\BorderedViewParentManager.cs" />
364362
<Compile Include="Views\Web\Events\WebViewLoadingErrorEvent.cs" />
365363
<Compile Include="Views\Web\Events\WebViewLoadingEvent.cs" />

ReactWindows/ReactNative/Shell/MainReactPackage.cs

-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
using ReactNative.Modules.Network;
1010
using ReactNative.Modules.StatusBar;
1111
using ReactNative.Modules.Storage;
12-
using ReactNative.Modules.Toast;
1312
using ReactNative.Modules.Vibration;
1413
using ReactNative.Modules.WebSocket;
1514
using ReactNative.UIManager;
@@ -54,7 +53,6 @@ public IReadOnlyList<INativeModule> CreateNativeModules(ReactContext reactContex
5453
new NetworkingModule(reactContext),
5554
new NetInfoModule(reactContext),
5655
new StatusBarModule(),
57-
new ToastModule(reactContext),
5856
new VibrationModule(),
5957
new WebSocketModule(reactContext),
6058
};

0 commit comments

Comments
 (0)